Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 719 Bytes

File metadata and controls

28 lines (19 loc) · 719 Bytes

Host

Properties

Name Type Description Notes

Example

from clientapi_cpanel.models.host import Host

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

# convert the object into a dict
host_dict = host_instance.to_dict()
# create an instance of Host from a dict
host_from_dict = Host.from_dict(host_dict)

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