Skip to content

Latest commit

 

History

History
42 lines (33 loc) · 2.92 KB

File metadata and controls

42 lines (33 loc) · 2.92 KB

InlineResponse20042ResultData

Properties

Name Type Description Notes
feature str The application's feature name. The `app_key` parameter's value. [optional]
file str The application's icon's filename. [optional]
group str The application's group. [optional]
height int The application's icon's height, in pixels. [optional]
var_if str Conditional arguments that determine whether to display the item, if any exist. Conditional arguments that determine whether to display the item. For example, $isreseller indicates that the item only displays for reseller accounts. For more information, read our Guide to cPanel Variables documentation. [optional]
imgtype str The item's image type. `icon` is the only possible value. [optional]
itemdesc str The application's display name. [optional]
itemorder int The application's order in the `dynamicui.conf` file representing the application's display order in cPanel's Home interface. For example, the first item on the cPanel Home interface has an `itemorder` value of `1`. [optional]
module str The application's module. A valid module name. [optional]
searchtext str One or more search terms. The application's icon will display when users enter these search terms in the Quick Find text box. A space-separated list of search terms. [optional]
subtype str The item's subtype. `img` is the only possible value . [optional]
type str The application's type. `image` is the only possible value. [optional]
url str The location to which the application's icon links. A valid filepath or URL. [optional]
width int The application's icon's width representing an image width, in pixels. [optional]

Example

from clientapi_cpanel.models.inline_response20042_result_data import InlineResponse20042ResultData

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

# convert the object into a dict
inline_response20042_result_data_dict = inline_response20042_result_data_instance.to_dict()
# create an instance of InlineResponse20042ResultData from a dict
inline_response20042_result_data_from_dict = InlineResponse20042ResultData.from_dict(inline_response20042_result_data_dict)

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