Skip to content

BaseErrorResponse

Properties

Name Type Description Notes
error BaseErrorResponseError

Example

from odm_api.models.base_error_response import BaseErrorResponse

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

# convert the object into a dict
base_error_response_dict = base_error_response_instance.to_dict()
# create an instance of BaseErrorResponse from a dict
base_error_response_from_dict = BaseErrorResponse.from_dict(base_error_response_dict)
[Back to Model list] [Back to API list] [Back to README]