Skip to content

Latest commit

 

History

History
36 lines (29 loc) · 1.95 KB

SearchTMRequestDto.md

File metadata and controls

36 lines (29 loc) · 1.95 KB

SearchTMRequestDto

Properties

Name Type Description Notes
segment str
workflow_level int [optional]
score_threshold float [optional]
previous_segment str [optional]
next_segment str [optional]
context_key str [optional]
max_segments int Default: 5 [optional]
max_sub_segments int Default: 5 [optional]
tag_metadata List[TagMetadataDto] [optional]
target_langs List[str]

Example

from phrasetms_client.models.search_tm_request_dto import SearchTMRequestDto

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

# convert the object into a dict
search_tm_request_dto_dict = search_tm_request_dto_instance.to_dict()
# create an instance of SearchTMRequestDto from a dict
search_tm_request_dto_from_dict = SearchTMRequestDto.from_dict(search_tm_request_dto_dict)

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