Skip to content

Latest commit

 

History

History
33 lines (26 loc) · 1.75 KB

File metadata and controls

33 lines (26 loc) · 1.75 KB

SearchTMResponseDto

Properties

Name Type Description Notes
segment_id str [optional]
source SearchTMSegmentDto [optional]
translations List[SearchTMSegmentDto] [optional]
trans_memory SearchTMTransMemoryDto [optional]
gross_score float [optional]
score float [optional]
sub_segment bool [optional]

Example

from phrasetms_client.models.search_tm_response_dto import SearchTMResponseDto

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

# convert the object into a dict
search_tm_response_dto_dict = search_tm_response_dto_instance.to_dict()
# create an instance of SearchTMResponseDto from a dict
search_tm_response_dto_from_dict = SearchTMResponseDto.from_dict(search_tm_response_dto_dict)

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