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