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