Skip to content

Latest commit

 

History

History
executable file
·
31 lines (22 loc) · 1.04 KB

File metadata and controls

executable file
·
31 lines (22 loc) · 1.04 KB

ResponseError

Properties

Name Type Description Notes
type str Type or category of the error
reason str Detailed explanation of why the error occurred [optional]
table str The table related to the error, if applicable [optional]

Example

from manticoresearch.models.response_error import ResponseError

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

# convert the object into a dict
response_error_dict = response_error_instance.to_dict()
# create an instance of ResponseError from a dict
response_error_from_dict = ResponseError.from_dict(response_error_dict)

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