Skip to content

BaseErrorResponseError

Properties

Name Type Description Notes
message str Detailed error message

Example

from odm_api.models.base_error_response_error import BaseErrorResponseError

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

# convert the object into a dict
base_error_response_error_dict = base_error_response_error_instance.to_dict()
# create an instance of BaseErrorResponseError from a dict
base_error_response_error_from_dict = BaseErrorResponseError.from_dict(base_error_response_error_dict)
[Back to Model list] [Back to API list] [Back to README]