Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 771 Bytes

File metadata and controls

28 lines (19 loc) · 771 Bytes

Account4

Properties

Name Type Description Notes

Example

from clientapi_cpanel.models.account4 import Account4

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

# convert the object into a dict
account4_dict = account4_instance.to_dict()
# create an instance of Account4 from a dict
account4_from_dict = Account4.from_dict(account4_dict)

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