Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 771 Bytes

Account1.md

File metadata and controls

28 lines (19 loc) · 771 Bytes

Account1

Properties

Name Type Description Notes

Example

from clientapi_cpanel.models.account1 import Account1

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

# convert the object into a dict
account1_dict = account1_instance.to_dict()
# create an instance of Account1 from a dict
account1_from_dict = Account1.from_dict(account1_dict)

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