Skip to content

Latest commit

 

History

History
45 lines (38 loc) · 5.07 KB

CreateAnalyseListAsyncDto.md

File metadata and controls

45 lines (38 loc) · 5.07 KB

CreateAnalyseListAsyncDto

Properties

Name Type Description Notes
jobs List[UidReference]
type str default: PreAnalyse [optional]
include_fuzzy_repetitions bool Default: true [optional]
separate_fuzzy_repetitions bool Default: false [optional]
include_confirmed_segments bool Default: true [optional]
include_numbers bool Default: true [optional]
include_locked_segments bool Default: true [optional]
count_source_units bool Default: true [optional]
include_trans_memory bool Default: true. Works only for type=PreAnalyse. [optional]
include_non_translatables bool Default: false. Works only for type=PreAnalyse. [optional]
include_machine_translation_matches bool Default: false. Works only for type=PreAnalyse. [optional]
trans_memory_post_editing bool Default: false. Works only for type=PostAnalyse. [optional]
non_translatable_post_editing bool Default: false. Works only for type=PostAnalyse. [optional]
machine_translate_post_editing bool Default: false. Works only for type=PostAnalyse. [optional]
name str [optional]
net_rate_scheme IdReference [optional]
compare_workflow_level int Required for type=Compare [optional]
use_project_analysis_settings bool Default: false. Use default project settings. Will be overwritten with setting sent in the API call. [optional]
callback_url str [optional]

Example

from phrasetms_client.models.create_analyse_list_async_dto import CreateAnalyseListAsyncDto

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

# convert the object into a dict
create_analyse_list_async_dto_dict = create_analyse_list_async_dto_instance.to_dict()
# create an instance of CreateAnalyseListAsyncDto from a dict
create_analyse_list_async_dto_from_dict = CreateAnalyseListAsyncDto.from_dict(create_analyse_list_async_dto_dict)

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