Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.75 KB

File metadata and controls

31 lines (22 loc) · 1.75 KB

InlineResponse200476ResultStatus

Properties

Name Type Description Notes
has_sitejet_published int Whether the Sitejet website is published. * `1` - Sitejet website is published. * `0` - Sitejet website is not published. [optional]
has_sitejet_website int Whether the domain's document root diretory contains a Sitejet directory. * `1` - User has created a Sitejet website. * `0` - User has not created a Sitejet website. [optional]
is_sitejet int Whether the domain's document root diretory's `index.html` file contains Sitejet deployed content. * `1` - User has a Sitejet website. * `0` - User does not have a Sitejet website. [optional]

Example

from clientapi_cpanel.models.inline_response200476_result_status import InlineResponse200476ResultStatus

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

# convert the object into a dict
inline_response200476_result_status_dict = inline_response200476_result_status_instance.to_dict()
# create an instance of InlineResponse200476ResultStatus from a dict
inline_response200476_result_status_from_dict = InlineResponse200476ResultStatus.from_dict(inline_response200476_result_status_dict)

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