Name | Type | Description | Notes |
---|
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)