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

TestErrorResponsesWithModel400Response

Properties

Name Type Description Notes
reason400 str [optional]

Example

from petstore_api.models.test_error_responses_with_model400_response import TestErrorResponsesWithModel400Response

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

# convert the object into a dict
test_error_responses_with_model400_response_dict = test_error_responses_with_model400_response_instance.to_dict()
# create an instance of TestErrorResponsesWithModel400Response from a dict
test_error_responses_with_model400_response_from_dict = TestErrorResponsesWithModel400Response.from_dict(test_error_responses_with_model400_response_dict)

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