Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 732 Bytes

Host4.md

File metadata and controls

28 lines (19 loc) · 732 Bytes

Host4

Properties

Name Type Description Notes

Example

from clientapi_cpanel.models.host4 import Host4

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

# convert the object into a dict
host4_dict = host4_instance.to_dict()
# create an instance of Host4 from a dict
host4_from_dict = Host4.from_dict(host4_dict)

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