Standard error response body
| Name | Type | Description | Notes |
|---|---|---|---|
| error | ApiErrorDetail |
from hotdata.models.api_error_response import ApiErrorResponse
# TODO update the JSON string below
json = "{}"
# create an instance of ApiErrorResponse from a JSON string
api_error_response_instance = ApiErrorResponse.from_json(json)
# print the JSON string representation of the object
print(ApiErrorResponse.to_json())
# convert the object into a dict
api_error_response_dict = api_error_response_instance.to_dict()
# create an instance of ApiErrorResponse from a dict
api_error_response_from_dict = ApiErrorResponse.from_dict(api_error_response_dict)