Skip to content

Latest commit

 

History

History
30 lines (23 loc) · 1.17 KB

SearchTMTransMemoryDto.md

File metadata and controls

30 lines (23 loc) · 1.17 KB

SearchTMTransMemoryDto

Properties

Name Type Description Notes
uid str [optional]
id str [optional]
name str [optional]
reverse bool [optional]

Example

from phrasetms_client.models.search_tm_trans_memory_dto import SearchTMTransMemoryDto

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

# convert the object into a dict
search_tm_trans_memory_dto_dict = search_tm_trans_memory_dto_instance.to_dict()
# create an instance of SearchTMTransMemoryDto from a dict
search_tm_trans_memory_dto_from_dict = SearchTMTransMemoryDto.from_dict(search_tm_trans_memory_dto_dict)

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