Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.02 KB

ErrorAndStatusResponse.md

File metadata and controls

30 lines (21 loc) · 1.02 KB

ErrorAndStatusResponse

Properties

Name Type Description Notes
error str
status_code float

Example

from waylay.services.registry.models.error_and_status_response import ErrorAndStatusResponse

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

# convert the object into a dict
error_and_status_response_dict = error_and_status_response_instance.to_dict()
# create an instance of ErrorAndStatusResponse from a dict
error_and_status_response_form_dict = error_and_status_response.from_dict(error_and_status_response_dict)

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