Skip to content

Latest commit

 

History

History
39 lines (30 loc) · 2.15 KB

InlineResponse20045ResultData.md

File metadata and controls

39 lines (30 loc) · 2.15 KB

InlineResponse20045ResultData

An object containing information about the queried app_keys application. Note: The object's name is the value specified in the app_keys parameter.

Properties

Name Type Description Notes
condition InlineResponse20045ResultCondition [optional]
description str The application's display name. [optional]
icon InlineResponse20045ResultIcon [optional]
implements str The module namespace for the specific application. [optional]
key str The application's Appkey name. [optional]
name str The application's name. [optional]
order int The application's order in the `sitemap.json` file. This value represents the application's display order in cPanel's Home interface. [optional]
terms List[str] Search keywords for the application. [optional]
type str The application's type. `item` is the only possible value. [optional]
url str The file path or URL to the the application's file. [optional]

Example

from clientapi_cpanel.models.inline_response20045_result_data import InlineResponse20045ResultData

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

# convert the object into a dict
inline_response20045_result_data_dict = inline_response20045_result_data_instance.to_dict()
# create an instance of InlineResponse20045ResultData from a dict
inline_response20045_result_data_from_dict = InlineResponse20045ResultData.from_dict(inline_response20045_result_data_dict)

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