Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 771 Bytes

File metadata and controls

28 lines (19 loc) · 771 Bytes

Account2

Properties

Name Type Description Notes

Example

from clientapi_cpanel.models.account2 import Account2

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

# convert the object into a dict
account2_dict = account2_instance.to_dict()
# create an instance of Account2 from a dict
account2_from_dict = Account2.from_dict(account2_dict)

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