Skip to content

Latest commit

 

History

History
29 lines (22 loc) · 2.25 KB

QualityAssuranceRunDtoV3.md

File metadata and controls

29 lines (22 loc) · 2.25 KB

QualityAssuranceRunDtoV3

Properties

Name Type Description Notes
initial_segment SegmentReference [optional]
max_qa_warnings_count int Maximum number of QA warnings in result, default: 100. For efficiency reasons QA warnings are processed with minimum segments chunk size 10, therefore slightly more warnings are returned. [optional]
warning_types List[str] [optional]

Example

from phrasetms_client.models.quality_assurance_run_dto_v3 import QualityAssuranceRunDtoV3

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

# convert the object into a dict
quality_assurance_run_dto_v3_dict = quality_assurance_run_dto_v3_instance.to_dict()
# create an instance of QualityAssuranceRunDtoV3 from a dict
quality_assurance_run_dto_v3_from_dict = QualityAssuranceRunDtoV3.from_dict(quality_assurance_run_dto_v3_dict)

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