Skip to content

Latest commit

 

History

History
34 lines (27 loc) · 1.62 KB

TransMemoryCreateDto.md

File metadata and controls

34 lines (27 loc) · 1.62 KB

TransMemoryCreateDto

Properties

Name Type Description Notes
name str
source_lang str
target_langs List[str]
client IdReference [optional]
business_unit IdReference [optional]
domain IdReference [optional]
sub_domain IdReference [optional]
note str [optional]

Example

from phrasetms_client.models.trans_memory_create_dto import TransMemoryCreateDto

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

# convert the object into a dict
trans_memory_create_dto_dict = trans_memory_create_dto_instance.to_dict()
# create an instance of TransMemoryCreateDto from a dict
trans_memory_create_dto_from_dict = TransMemoryCreateDto.from_dict(trans_memory_create_dto_dict)

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