Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 2.35 KB

InlineResponse200469ResultData.md

File metadata and controls

32 lines (23 loc) · 2.35 KB

InlineResponse200469ResultData

Properties

Name Type Description Notes
meta InlineResponse200469ResultMeta [optional]
path str 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

from clientapi_cpanel.models.inline_response200469_result_data import InlineResponse200469ResultData

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

# convert the object into a dict
inline_response200469_result_data_dict = inline_response200469_result_data_instance.to_dict()
# create an instance of InlineResponse200469ResultData from a dict
inline_response200469_result_data_from_dict = InlineResponse200469ResultData.from_dict(inline_response200469_result_data_dict)

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