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
A feature name. The icon only displays if the cPanel user can access this feature.
[optional]
file
str
The application's icon's filename.
[optional]
group
str
The item's group.
[optional]
height
str
The application icon height, in pixels.
[optional]
var_if
str
An expression containing cPanel variables that determine whether to display the item. The function only returns this value if any variables exist. 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]
implements
str
The `implements` name of the application. WHM API 1's `create_user_session` and `get_users_links` functions use this value.
[optional]
itemdesc
str
The application's display name.
[optional]
itemorder
str
The application's order in the `dynamicui.conf` file. This value represents the application's display order in cPanel's Home interface.
[optional]
module
str
The Perl module that the application requires.
[optional]
onclick
str
JavaScript function that the browser calls before or instead of URL navigation.
[optional]
searchtext
str
One or more space-separated search terms. The icon will display when users enter these search terms in the Quick Find text box in the cPanel interface.
[optional]
subtype
str
The item's subtype. `img` is the only possible value.
[optional]
target
str
The target of the application's link.
[optional]
touch
str
Conditional arguments that determine whether to display the item, if a specified touch file exists.
[optional]
type
str
The application's type. `image` is the only possible value.
[optional]
url
str
The path to which the application's icon links.
[optional]
width
str
The application's icon's width, in pixels.
[optional]
Example
fromclientapi_cpanel.models.inline_response20044_result_data_itemsimportInlineResponse20044ResultDataItems# TODO update the JSON string belowjson="{}"# create an instance of InlineResponse20044ResultDataItems from a JSON stringinline_response20044_result_data_items_instance=InlineResponse20044ResultDataItems.from_json(json)
# print the JSON string representation of the objectprint(InlineResponse20044ResultDataItems.to_json())
# convert the object into a dictinline_response20044_result_data_items_dict=inline_response20044_result_data_items_instance.to_dict()
# create an instance of InlineResponse20044ResultDataItems from a dictinline_response20044_result_data_items_from_dict=InlineResponse20044ResultDataItems.from_dict(inline_response20044_result_data_items_dict)