Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 1.12 KB

File metadata and controls

37 lines (28 loc) · 1.12 KB

UserBilling

Properties

Name Type Description Notes
type str [optional]
name str [optional]
address str [optional]
city str [optional]
county str [optional]
zip str [optional]
country str [optional]
phone str [optional]
tax_id str [optional]

Example

from openapi_client.models.user_billing import UserBilling

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

# convert the object into a dict
user_billing_dict = user_billing_instance.to_dict()
# create an instance of UserBilling from a dict
user_billing_from_dict = UserBilling.from_dict(user_billing_dict)

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