| 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] |
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]