Skip to content

Latest commit

 

History

History
37 lines (29 loc) · 4.07 KB

PreTranslateSettingsV3Dto.md

File metadata and controls

37 lines (29 loc) · 4.07 KB

PreTranslateSettingsV3Dto

Pre-translate settings

Properties

Name Type Description Notes
pre_translate_on_job_creation bool Pre-translate & set job to completed: Pre-translate on job creation. Default: false [optional]
set_job_status_completed bool Pre-translate & set job to completed: Set job to completed once pre-translated. Default: false [optional]
set_job_status_completed_when_confirmed bool Pre-translate & set job to completed when all segments confirmed: Set job to completed once pre-translated and all segments are confirmed. Default: false [optional]
set_project_status_completed bool Pre-translate & set job to completed: Set project to completed once all jobs pre-translated. Default: false [optional]
overwrite_existing_translations bool Overwrite existing translations in target segments. Default: false [optional]
translation_memory_settings TranslationMemorySettingsDto [optional]
machine_translation_settings MachineTranslationSettingsDto [optional]
non_translatable_settings NonTranslatableSettingsDto [optional]
repetitions_settings RepetitionsSettingsDto [optional]

Example

from phrasetms_client.models.pre_translate_settings_v3_dto import PreTranslateSettingsV3Dto

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

# convert the object into a dict
pre_translate_settings_v3_dto_dict = pre_translate_settings_v3_dto_instance.to_dict()
# create an instance of PreTranslateSettingsV3Dto from a dict
pre_translate_settings_v3_dto_from_dict = PreTranslateSettingsV3Dto.from_dict(pre_translate_settings_v3_dto_dict)

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