You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
fromclientapi_cpanel.models.inline_response200476_result_statusimportInlineResponse200476ResultStatus# TODO update the JSON string belowjson="{}"# create an instance of InlineResponse200476ResultStatus from a JSON stringinline_response200476_result_status_instance=InlineResponse200476ResultStatus.from_json(json)
# print the JSON string representation of the objectprint(InlineResponse200476ResultStatus.to_json())
# convert the object into a dictinline_response200476_result_status_dict=inline_response200476_result_status_instance.to_dict()
# create an instance of InlineResponse200476ResultStatus from a dictinline_response200476_result_status_from_dict=InlineResponse200476ResultStatus.from_dict(inline_response200476_result_status_dict)