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