Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 777 Bytes

File metadata and controls

28 lines (19 loc) · 777 Bytes

HostName

Properties

Name Type Description Notes

Example

from clientapi_cpanel.models.host_name import HostName

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

# convert the object into a dict
host_name_dict = host_name_instance.to_dict()
# create an instance of HostName from a dict
host_name_from_dict = HostName.from_dict(host_name_dict)

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