Skip to content

Latest commit

 

History

History
48 lines (39 loc) · 3.56 KB

File metadata and controls

48 lines (39 loc) · 3.56 KB

InlineResponse20044ResultDataItems

Properties

Name Type Description Notes
acontent str The content of a tag in the application's link. [optional]
base64_png_image str The application's icon in Base64 format. [optional]
feature str 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

from clientapi_cpanel.models.inline_response20044_result_data_items import InlineResponse20044ResultDataItems

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

# convert the object into a dict
inline_response20044_result_data_items_dict = inline_response20044_result_data_items_instance.to_dict()
# create an instance of InlineResponse20044ResultDataItems from a dict
inline_response20044_result_data_items_from_dict = InlineResponse20044ResultDataItems.from_dict(inline_response20044_result_data_items_dict)

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