Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.48 KB

InlineResponse200207Metadata.md

File metadata and controls

32 lines (23 loc) · 1.48 KB

InlineResponse200207Metadata

Properties

Name Type Description Notes
command str The method name called. [optional]
reason str 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

from clientapi_cpanel.models.inline_response200207_metadata import InlineResponse200207Metadata

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

# convert the object into a dict
inline_response200207_metadata_dict = inline_response200207_metadata_instance.to_dict()
# create an instance of InlineResponse200207Metadata from a dict
inline_response200207_metadata_from_dict = InlineResponse200207Metadata.from_dict(inline_response200207_metadata_dict)

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