Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 719 Bytes

File metadata and controls

28 lines (19 loc) · 719 Bytes

Site

Properties

Name Type Description Notes

Example

from clientapi_cpanel.models.site import Site

# TODO update the JSON string below
json = "{}"
# create an instance of Site from a JSON string
site_instance = Site.from_json(json)
# print the JSON string representation of the object
print(Site.to_json())

# convert the object into a dict
site_dict = site_instance.to_dict()
# create an instance of Site from a dict
site_from_dict = Site.from_dict(site_dict)

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