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 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
fromclientapi_cpanel.models.inline_response20042_result_dataimportInlineResponse20042ResultData# TODO update the JSON string belowjson="{}"# create an instance of InlineResponse20042ResultData from a JSON stringinline_response20042_result_data_instance=InlineResponse20042ResultData.from_json(json)
# print the JSON string representation of the objectprint(InlineResponse20042ResultData.to_json())
# convert the object into a dictinline_response20042_result_data_dict=inline_response20042_result_data_instance.to_dict()
# create an instance of InlineResponse20042ResultData from a dictinline_response20042_result_data_from_dict=InlineResponse20042ResultData.from_dict(inline_response20042_result_data_dict)