Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 854 Bytes

TestResponse.md

File metadata and controls

28 lines (20 loc) · 854 Bytes

TestResponse

Properties

Name Type Description Notes
message str

Example

from openapi_client.models.test_response import TestResponse

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

# convert the object into a dict
test_response_dict = test_response_instance.to_dict()
# create an instance of TestResponse from a dict
test_response_form_dict = test_response.from_dict(test_response_dict)

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