Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.2 KB

File metadata and controls

29 lines (20 loc) · 1.2 KB

TestErrorResponsesWithModel404Response

Properties

Name Type Description Notes
reason404 str [optional]

Example

from petstore_api.models.test_error_responses_with_model404_response import TestErrorResponsesWithModel404Response

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

# convert the object into a dict
test_error_responses_with_model404_response_dict = test_error_responses_with_model404_response_instance.to_dict()
# create an instance of TestErrorResponsesWithModel404Response from a dict
test_error_responses_with_model404_response_from_dict = TestErrorResponsesWithModel404Response.from_dict(test_error_responses_with_model404_response_dict)

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