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