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