Skip to content

Latest commit

 

History

History
39 lines (30 loc) · 1.29 KB

File metadata and controls

39 lines (30 loc) · 1.29 KB

Userinfopostpayload

Properties

Name Type Description Notes
business bool
name str [optional]
email str [optional]
company_name str [optional]
vat_number str [optional]
phone str [optional]
billing_address1 str [optional]
billing_address2 str [optional]
zip_code str
country str
state str [optional]

Example

from hyperstack.models.userinfopostpayload import Userinfopostpayload

# TODO update the JSON string below
json = "{}"
# create an instance of Userinfopostpayload from a JSON string
userinfopostpayload_instance = Userinfopostpayload.from_json(json)
# print the JSON string representation of the object
print(Userinfopostpayload.to_json())

# convert the object into a dict
userinfopostpayload_dict = userinfopostpayload_instance.to_dict()
# create an instance of Userinfopostpayload from a dict
userinfopostpayload_form_dict = userinfopostpayload.from_dict(userinfopostpayload_dict)

[Back to Model list] [Back to API list] [Back to README]