Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1020 Bytes

ErrorResponse.md

File metadata and controls

29 lines (20 loc) · 1020 Bytes

ErrorResponse

Error response object containing information about the error and a status code

Properties

Name Type Description Notes
error ResponseError
status int HTTP status code of the error response [optional] [default to 500]

Example

from manticoresearch.models.error_response import ErrorResponse

# create an instance of ErrorResponse from a JSON string
error_response_instance = ErrorResponse.from_json(json)
# print the JSON string representation of the object
print(ErrorResponse.to_json())

# convert the object into a dict
error_response_dict = error_response_instance.to_dict()
# create an instance of ErrorResponse from a dict
error_response_from_dict = ErrorResponse.from_dict(error_response_dict)

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