Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 732 Bytes

Site1.md

File metadata and controls

28 lines (19 loc) · 732 Bytes

Site1

Properties

Name Type Description Notes

Example

from clientapi_cpanel.models.site1 import Site1

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

# convert the object into a dict
site1_dict = site1_instance.to_dict()
# create an instance of Site1 from a dict
site1_from_dict = Site1.from_dict(site1_dict)

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