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 message about the feature's status. Note: The function only returns a message when the feature exists but it is not enabled.
[optional]
metadata
object
[optional]
status
int
Whether the feature exists on the system. * `1` — The feature exists on the system and it is enabled. * `0` — The feature exists on the system, but the user does not have it. * `null` — The feature is not installed on the system.
[optional]
warnings
List[str]
List of warnings generated by the API. Warnings describe non-critical failures or other problematic conditions noted while running a API.
[optional]
Example
fromclientapi_cpanel.models.inline_response200233_resultimportInlineResponse200233Result# TODO update the JSON string belowjson="{}"# create an instance of InlineResponse200233Result from a JSON stringinline_response200233_result_instance=InlineResponse200233Result.from_json(json)
# print the JSON string representation of the objectprint(InlineResponse200233Result.to_json())
# convert the object into a dictinline_response200233_result_dict=inline_response200233_result_instance.to_dict()
# create an instance of InlineResponse200233Result from a dictinline_response200233_result_from_dict=InlineResponse200233Result.from_dict(inline_response200233_result_dict)