Skip to content

Latest commit

 

History

History
40 lines (33 loc) · 2.39 KB

TransMemoryDto.md

File metadata and controls

40 lines (33 loc) · 2.39 KB

TransMemoryDto

Properties

Name Type Description Notes
id str [optional]
uid str [optional]
internal_id int [optional]
name str [optional]
source_lang str [optional]
target_langs List[str] [optional]
client ClientReference [optional]
business_unit BusinessUnitReference [optional]
domain DomainReference [optional]
sub_domain SubDomainReference [optional]
note str [optional]
date_created datetime [optional]
created_by UserReference [optional]
owner UserReference [optional]

Example

from phrasetms_client.models.trans_memory_dto import TransMemoryDto

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

# convert the object into a dict
trans_memory_dto_dict = trans_memory_dto_instance.to_dict()
# create an instance of TransMemoryDto from a dict
trans_memory_dto_from_dict = TransMemoryDto.from_dict(trans_memory_dto_dict)

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