Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.89 KB

File metadata and controls

35 lines (26 loc) · 1.89 KB

InlineResponse200476ResultMetadata

Properties

Name Type Description Notes
company str The website's comapany. [optional]
cpanel_domain_guid str The cPanel user's domain. [optional]
fullcms float Whether the full Sitejet Content Management System is enabled. * `1` - Full CMS is enabled. * `0` - Full CMS is disabled. [optional]
language str The language selection for the Sitejet Content Management System. [optional]
latest_publish_date int The last successful publication of the Sitejet domain in Unix time format. [optional]
publish_status int Whether the Sitejet domain is published. * `1` - Website is published. * `0` - Website is not published. [optional]
website_id int The website ID of the created website. [optional]

Example

from clientapi_cpanel.models.inline_response200476_result_metadata import InlineResponse200476ResultMetadata

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

# convert the object into a dict
inline_response200476_result_metadata_dict = inline_response200476_result_metadata_instance.to_dict()
# create an instance of InlineResponse200476ResultMetadata from a dict
inline_response200476_result_metadata_from_dict = InlineResponse200476ResultMetadata.from_dict(inline_response200476_result_metadata_dict)

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