Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 947 Bytes

File metadata and controls

31 lines (22 loc) · 947 Bytes

ApiErrorDetail

Error detail within an API error response

Properties

Name Type Description Notes
code str
message str

Example

from hotdata.models.api_error_detail import ApiErrorDetail

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

# convert the object into a dict
api_error_detail_dict = api_error_detail_instance.to_dict()
# create an instance of ApiErrorDetail from a dict
api_error_detail_from_dict = ApiErrorDetail.from_dict(api_error_detail_dict)

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