Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 790 Bytes

File metadata and controls

28 lines (19 loc) · 790 Bytes

HostName2

Properties

Name Type Description Notes

Example

from clientapi_cpanel.models.host_name2 import HostName2

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

# convert the object into a dict
host_name2_dict = host_name2_instance.to_dict()
# create an instance of HostName2 from a dict
host_name2_from_dict = HostName2.from_dict(host_name2_dict)

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