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
The reason the API function failed when the `metadata.result` field is `0`. This field may display a success message when a function succeeds.
[optional]
result
int
* `1` - Success. * `0` - Failed. Check the `reason` field for more details.
[optional]
version
int
The version of the API function.
[optional]
Example
fromclientapi_cpanel.models.inline_response200207_metadataimportInlineResponse200207Metadata# TODO update the JSON string belowjson="{}"# create an instance of InlineResponse200207Metadata from a JSON stringinline_response200207_metadata_instance=InlineResponse200207Metadata.from_json(json)
# print the JSON string representation of the objectprint(InlineResponse200207Metadata.to_json())
# convert the object into a dictinline_response200207_metadata_dict=inline_response200207_metadata_instance.to_dict()
# create an instance of InlineResponse200207Metadata from a dictinline_response200207_metadata_from_dict=InlineResponse200207Metadata.from_dict(inline_response200207_metadata_dict)