Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 965 Bytes

File metadata and controls

30 lines (21 loc) · 965 Bytes

ApiErrorResponse

Standard error response body

Properties

Name Type Description Notes
error ApiErrorDetail

Example

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)

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