Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.17 KB

ErrorWithDetailsResponse.md

File metadata and controls

32 lines (23 loc) · 1.17 KB

ErrorWithDetailsResponse

Properties

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

Example

from waylay.services.rules.models.error_with_details_response import ErrorWithDetailsResponse

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

# convert the object into a dict
error_with_details_response_dict = error_with_details_response_instance.to_dict()
# create an instance of ErrorWithDetailsResponse from a dict
error_with_details_response_form_dict = error_with_details_response.from_dict(error_with_details_response_dict)

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