Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 732 Bytes

File metadata and controls

28 lines (19 loc) · 732 Bytes

Host3

Properties

Name Type Description Notes

Example

from clientapi_cpanel.models.host3 import Host3

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

# convert the object into a dict
host3_dict = host3_instance.to_dict()
# create an instance of Host3 from a dict
host3_from_dict = Host3.from_dict(host3_dict)

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