Name | Type | Description | Notes |
---|
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)