Skip to content

Latest commit

 

History

History
29 lines (22 loc) · 1018 Bytes

Response.md

File metadata and controls

29 lines (22 loc) · 1018 Bytes

Response

Properties

Name Type Description Notes
context Dict[str, object] [optional]
done bool [optional]
cancelled bool [optional]

Example

from phrasetms_client.models.response import Response

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

# convert the object into a dict
response_dict = response_instance.to_dict()
# create an instance of Response from a dict
response_from_dict = Response.from_dict(response_dict)

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