Name | Type | Description | Notes |
---|---|---|---|
domain | str | The name of the cPanel user's domain. | [optional] |
metadata | InlineResponse200476ResultMetadata | [optional] | |
quota | InlineResponse200476ResultQuota | [optional] | |
redirection_enabled | int | Whether the domain redirects to another URL. * 1 - Redirects. * 0 - Doesn't redirect. | [optional] |
shared_doc_root | int | whether the sitejet domain is sharing the document_root. * 1 - document_root is shared. * 0 - document_root is not shared. | [optional] |
is_restore_point_available | int | Whether the sitejet domain has a restore point. * `1` – Restore point is available. * `0` – Restore point is not available. | [optional] |
status | InlineResponse200476ResultStatus | [optional] |
from clientapi_cpanel.models.inline_response200476_result_data import InlineResponse200476ResultData
# TODO update the JSON string below
json = "{}"
# create an instance of InlineResponse200476ResultData from a JSON string
inline_response200476_result_data_instance = InlineResponse200476ResultData.from_json(json)
# print the JSON string representation of the object
print(InlineResponse200476ResultData.to_json())
# convert the object into a dict
inline_response200476_result_data_dict = inline_response200476_result_data_instance.to_dict()
# create an instance of InlineResponse200476ResultData from a dict
inline_response200476_result_data_from_dict = InlineResponse200476ResultData.from_dict(inline_response200476_result_data_dict)