Name | Type | Description | Notes |
---|---|---|---|
spell_check_results | List[CheckResponse] | [optional] |
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)