Name | Type | Description | Notes |
---|---|---|---|
message | str |
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)