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
The template directory path. Note: The template directory's location depends on whether the `root` user or a reseller owns the template.
[optional]
preview
int
Whether the template includes a preview image. * `1` - The template directory contains a `preview.png` file. * `0` - The template directory does not contain a `preview.png` file. The cPanel interface will display a placeholder image for this template.
[optional]
template
str
The template's name. This is the name of a directory that contains a `meta.json` template information file and exists within one of the following directories: * `/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. Note: The template directory's location depends on whether the `root` user or a reseller owns the template.
[optional]
Example
fromclientapi_cpanel.models.inline_response200469_result_dataimportInlineResponse200469ResultData# TODO update the JSON string belowjson="{}"# create an instance of InlineResponse200469ResultData from a JSON stringinline_response200469_result_data_instance=InlineResponse200469ResultData.from_json(json)
# print the JSON string representation of the objectprint(InlineResponse200469ResultData.to_json())
# convert the object into a dictinline_response200469_result_data_dict=inline_response200469_result_data_instance.to_dict()
# create an instance of InlineResponse200469ResultData from a dictinline_response200469_result_data_from_dict=InlineResponse200469ResultData.from_dict(inline_response200469_result_data_dict)