Skip to content

Latest commit

 

History

History
30 lines (23 loc) · 1.26 KB

PreAnalyseAllOf.md

File metadata and controls

30 lines (23 loc) · 1.26 KB

PreAnalyseAllOf

Properties

Name Type Description Notes
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]

Example

from phrasetms_client.models.pre_analyse_all_of import PreAnalyseAllOf

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

# convert the object into a dict
pre_analyse_all_of_dict = pre_analyse_all_of_instance.to_dict()
# create an instance of PreAnalyseAllOf from a dict
pre_analyse_all_of_from_dict = PreAnalyseAllOf.from_dict(pre_analyse_all_of_dict)

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