Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 960 Bytes

ErrorResponse.md

File metadata and controls

31 lines (22 loc) · 960 Bytes

ErrorResponse

Properties

Name Type Description Notes
status_code int
error str
code str Optional error code [optional]

Example

from waylay.services.rules.models.error_response import ErrorResponse

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

# convert the object into a dict
error_response_dict = error_response_instance.to_dict()
# create an instance of ErrorResponse from a dict
error_response_form_dict = error_response.from_dict(error_response_dict)

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