Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 758 Bytes

General.md

File metadata and controls

28 lines (19 loc) · 758 Bytes

General

Properties

Name Type Description Notes

Example

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)

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