You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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]
Example
fromphrasetms_client.models.quality_assurance_segments_run_dto_v3importQualityAssuranceSegmentsRunDtoV3# TODO update the JSON string belowjson="{}"# create an instance of QualityAssuranceSegmentsRunDtoV3 from a JSON stringquality_assurance_segments_run_dto_v3_instance=QualityAssuranceSegmentsRunDtoV3.from_json(json)
# print the JSON string representation of the objectprintQualityAssuranceSegmentsRunDtoV3.to_json()
# convert the object into a dictquality_assurance_segments_run_dto_v3_dict=quality_assurance_segments_run_dto_v3_instance.to_dict()
# create an instance of QualityAssuranceSegmentsRunDtoV3 from a dictquality_assurance_segments_run_dto_v3_from_dict=QualityAssuranceSegmentsRunDtoV3.from_dict(quality_assurance_segments_run_dto_v3_dict)