Name | Type | Description | Notes |
---|
from clientapi_cpanel.models.host2 import Host2
# TODO update the JSON string below
json = "{}"
# create an instance of Host2 from a JSON string
host2_instance = Host2.from_json(json)
# print the JSON string representation of the object
print(Host2.to_json())
# convert the object into a dict
host2_dict = host2_instance.to_dict()
# create an instance of Host2 from a dict
host2_from_dict = Host2.from_dict(host2_dict)