Name | Type | Description | Notes |
---|
from clientapi_cpanel.models.general import General
# TODO update the JSON string below
json = "{}"
# create an instance of General from a JSON string
general_instance = General.from_json(json)
# print the JSON string representation of the object
print(General.to_json())
# convert the object into a dict
general_dict = general_instance.to_dict()
# create an instance of General from a dict
general_from_dict = General.from_dict(general_dict)