Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 751 Bytes

MxHost.md

File metadata and controls

28 lines (19 loc) · 751 Bytes

MxHost

Properties

Name Type Description Notes

Example

from clientapi_cpanel.models.mx_host import MxHost

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

# convert the object into a dict
mx_host_dict = mx_host_instance.to_dict()
# create an instance of MxHost from a dict
mx_host_from_dict = MxHost.from_dict(mx_host_dict)

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