Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.08 KB

ErrorResponseWithDetails.md

File metadata and controls

31 lines (22 loc) · 1.08 KB

ErrorResponseWithDetails

Properties

Name Type Description Notes
status_code int
error str
details List[str] [optional]

Example

from waylay.services.alarms.models.error_response_with_details import ErrorResponseWithDetails

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

# convert the object into a dict
error_response_with_details_dict = error_response_with_details_instance.to_dict()
# create an instance of ErrorResponseWithDetails from a dict
error_response_with_details_form_dict = error_response_with_details.from_dict(error_response_with_details_dict)

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