Skip to content

Latest commit

 

History

History
28 lines (21 loc) · 1.12 KB

CheckResponse.md

File metadata and controls

28 lines (21 loc) · 1.12 KB

CheckResponse

Properties

Name Type Description Notes
text str [optional]
misspelled_words List[MisspelledWord] [optional]

Example

from phrasetms_client.models.check_response import CheckResponse

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

# convert the object into a dict
check_response_dict = check_response_instance.to_dict()
# create an instance of CheckResponse from a dict
check_response_from_dict = CheckResponse.from_dict(check_response_dict)

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