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
Information about each group in the cPanel interface.
[optional]
implements
Dict[str, str]
An object mapping the `implements` names to Appkey values for applications in cPanel. For example, use this mapping to determine that the `implements` value `SSL_TLS_Status` maps to the Appkey value `tls_status`. Note: * The Appkey for an application can be found in the `key` attribute elsewhere in the API response. * The `implements` for an application can be found in the `implements` attribute elsewhere in the API response. * For more information about Appkey values, read our Guide to cPanel Interface Customization - Appkeys documentation.
[optional]
index
Dict[str, List[int]]
The applications and the order in which they appear in the cPanel interface.
[optional]
Example
fromclientapi_cpanel.models.inline_response20044_result_dataimportInlineResponse20044ResultData# TODO update the JSON string belowjson="{}"# create an instance of InlineResponse20044ResultData from a JSON stringinline_response20044_result_data_instance=InlineResponse20044ResultData.from_json(json)
# print the JSON string representation of the objectprint(InlineResponse20044ResultData.to_json())
# convert the object into a dictinline_response20044_result_data_dict=inline_response20044_result_data_instance.to_dict()
# create an instance of InlineResponse20044ResultData from a dictinline_response20044_result_data_from_dict=InlineResponse20044ResultData.from_dict(inline_response20044_result_data_dict)