Skip to content

Latest commit

 

History

History
34 lines (27 loc) · 2.05 KB

TransMemoryEditDto.md

File metadata and controls

34 lines (27 loc) · 2.05 KB

TransMemoryEditDto

Properties

Name Type Description Notes
name str
target_langs List[str] New target languages to add. No languages can be removed
client IdReference [optional]
business_unit IdReference [optional]
domain IdReference [optional]
sub_domain IdReference [optional]
owner IdReference [optional]
note str [optional]

Example

from phrasetms_client.models.trans_memory_edit_dto import TransMemoryEditDto

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

# convert the object into a dict
trans_memory_edit_dto_dict = trans_memory_edit_dto_instance.to_dict()
# create an instance of TransMemoryEditDto from a dict
trans_memory_edit_dto_from_dict = TransMemoryEditDto.from_dict(trans_memory_edit_dto_dict)

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