Skip to content

Latest commit

 

History

History
27 lines (20 loc) · 1.14 KB

SpellCheckResponseDto.md

File metadata and controls

27 lines (20 loc) · 1.14 KB

SpellCheckResponseDto

Properties

Name Type Description Notes
spell_check_results List[CheckResponse] [optional]

Example

from phrasetms_client.models.spell_check_response_dto import SpellCheckResponseDto

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

# convert the object into a dict
spell_check_response_dto_dict = spell_check_response_dto_instance.to_dict()
# create an instance of SpellCheckResponseDto from a dict
spell_check_response_dto_from_dict = SpellCheckResponseDto.from_dict(spell_check_response_dto_dict)

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