| Name |
Type |
Description |
Notes |
| trans_memory_post_editing |
bool |
Default: false |
[optional] |
| non_translatable_post_editing |
bool |
Default: false |
[optional] |
| machine_translate_post_editing |
bool |
Default: false |
[optional] |
| include_fuzzy_repetitions |
bool |
Default: false |
[optional] |
| separate_fuzzy_repetitions |
bool |
Default: false |
[optional] |
| include_non_translatables |
bool |
Default: false |
[optional] |
| include_machine_translation_matches |
bool |
Default: false |
[optional] |
from phrasetms_client.models.pre_analyse_target_compare import PreAnalyseTargetCompare
# TODO update the JSON string below
json = "{}"
# create an instance of PreAnalyseTargetCompare from a JSON string
pre_analyse_target_compare_instance = PreAnalyseTargetCompare.from_json(json)
# print the JSON string representation of the object
print PreAnalyseTargetCompare.to_json()
# convert the object into a dict
pre_analyse_target_compare_dict = pre_analyse_target_compare_instance.to_dict()
# create an instance of PreAnalyseTargetCompare from a dict
pre_analyse_target_compare_from_dict = PreAnalyseTargetCompare.from_dict(pre_analyse_target_compare_dict)
[Back to Model list] [Back to API list] [Back to README]