An object containing template settings. Important: This object also contains the user's website content. The template provider determines these values. * For information about the content for cPanel-provided templates, read our Guide to Site Publisher Templates documentation. * For more information about other templates, contact the template provider.
| Name | Type | Description | Notes |
|---|---|---|---|
| is_empty | int | Whether the domain's `configurations.json` file exists and contains template information. * `1` — The `configurations.json` file exists and contains template information. * `0` — The `configurations.json` file does not exist, or does not contain template information. | [optional] |
| path | str | The template directory path. * `/var/cpanel/customizations/site_templates/` — The `root` user's templates. * `/home/username/var/cpanel/reseller/site_templates/` — A reseller's templates, where username represents the reseller's `username`. * `/usr/local/cpanel/3rdparty/share/site_templates/` — cPanel-provided templates. | [optional] |
| template | str | The template's name as it appears in the `configurations.json` file. | [optional] |
from clientapi_cpanel.models.inline_response200470_result_template_settings import InlineResponse200470ResultTemplateSettings
# TODO update the JSON string below
json = "{}"
# create an instance of InlineResponse200470ResultTemplateSettings from a JSON string
inline_response200470_result_template_settings_instance = InlineResponse200470ResultTemplateSettings.from_json(json)
# print the JSON string representation of the object
print(InlineResponse200470ResultTemplateSettings.to_json())
# convert the object into a dict
inline_response200470_result_template_settings_dict = inline_response200470_result_template_settings_instance.to_dict()
# create an instance of InlineResponse200470ResultTemplateSettings from a dict
inline_response200470_result_template_settings_from_dict = InlineResponse200470ResultTemplateSettings.from_dict(inline_response200470_result_template_settings_dict)