Skip to content

Latest commit

 

History

History
29 lines (22 loc) · 1.08 KB

SuggestRequestDto.md

File metadata and controls

29 lines (22 loc) · 1.08 KB

SuggestRequestDto

Properties

Name Type Description Notes
lang str
words List[str]
reference_texts List[str] [optional]

Example

from phrasetms_client.models.suggest_request_dto import SuggestRequestDto

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

# convert the object into a dict
suggest_request_dto_dict = suggest_request_dto_instance.to_dict()
# create an instance of SuggestRequestDto from a dict
suggest_request_dto_from_dict = SuggestRequestDto.from_dict(suggest_request_dto_dict)

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