| 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] |
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)