Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 930 Bytes

ErrorResponseBody.md

File metadata and controls

29 lines (20 loc) · 930 Bytes

ErrorResponseBody

Properties

Name Type Description Notes
message str

Example

from trieve_py_client.models.error_response_body import ErrorResponseBody

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

# convert the object into a dict
error_response_body_dict = error_response_body_instance.to_dict()
# create an instance of ErrorResponseBody from a dict
error_response_body_form_dict = error_response_body.from_dict(error_response_body_dict)

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