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] |
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]