Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 771 Bytes

Account3.md

File metadata and controls

28 lines (19 loc) · 771 Bytes

Account3

Properties

Name Type Description Notes

Example

from clientapi_cpanel.models.account3 import Account3

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

# convert the object into a dict
account3_dict = account3_instance.to_dict()
# create an instance of Account3 from a dict
account3_from_dict = Account3.from_dict(account3_dict)

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