Skip to content

Latest commit

 

History

History
33 lines (26 loc) · 2.03 KB

File metadata and controls

33 lines (26 loc) · 2.03 KB

ProjectTemplateTransMemoryDtoV3

Properties

Name Type Description Notes
target_locale str [optional]
workflow_step WorkflowStepReferenceV3 [optional]
read_mode bool [optional]
write_mode bool [optional]
trans_memory TransMemoryDtoV3 [optional]
penalty float [optional]
apply_penalty_to101_only bool [optional]

Example

from phrasetms_client.models.project_template_trans_memory_dto_v3 import ProjectTemplateTransMemoryDtoV3

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

# convert the object into a dict
project_template_trans_memory_dto_v3_dict = project_template_trans_memory_dto_v3_instance.to_dict()
# create an instance of ProjectTemplateTransMemoryDtoV3 from a dict
project_template_trans_memory_dto_v3_from_dict = ProjectTemplateTransMemoryDtoV3.from_dict(project_template_trans_memory_dto_v3_dict)

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