| Name | Type | Description | Notes |
|---|---|---|---|
| trans_memory | TransMemoryDtoV3 | [optional] | |
| penalty | float | [optional] | |
| apply_penalty_to101_only | bool | [optional] | |
| target_locale | str | [optional] | |
| workflow_step | WorkflowStepReferenceV3 | [optional] | |
| read_mode | bool | [optional] | |
| write_mode | bool | [optional] | |
| order | int | [optional] |
from phrasetms_client.models.project_trans_memory_dto_v3 import ProjectTransMemoryDtoV3
# TODO update the JSON string below
json = "{}"
# create an instance of ProjectTransMemoryDtoV3 from a JSON string
project_trans_memory_dto_v3_instance = ProjectTransMemoryDtoV3.from_json(json)
# print the JSON string representation of the object
print ProjectTransMemoryDtoV3.to_json()
# convert the object into a dict
project_trans_memory_dto_v3_dict = project_trans_memory_dto_v3_instance.to_dict()
# create an instance of ProjectTransMemoryDtoV3 from a dict
project_trans_memory_dto_v3_from_dict = ProjectTransMemoryDtoV3.from_dict(project_trans_memory_dto_v3_dict)