Skip to content

Latest commit

 

History

History
39 lines (32 loc) · 2.31 KB

TransMemoryDtoV2.md

File metadata and controls

39 lines (32 loc) · 2.31 KB

TransMemoryDtoV2

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]

Example

from phrasetms_client.models.trans_memory_dto_v2 import TransMemoryDtoV2

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

# convert the object into a dict
trans_memory_dto_v2_dict = trans_memory_dto_v2_instance.to_dict()
# create an instance of TransMemoryDtoV2 from a dict
trans_memory_dto_v2_from_dict = TransMemoryDtoV2.from_dict(trans_memory_dto_v2_dict)

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