Skip to content

Latest commit

 

History

History
31 lines (23 loc) · 1.17 KB

File metadata and controls

31 lines (23 loc) · 1.17 KB

TestRunProgress

TestRunProgress is a shared message for representing the progress of a single test run.

Properties

Name Type Description Notes
test_run_id str [optional]
status TestTaskStatus [optional] [default to TestTaskStatus.UNSPECIFIED]
test_batches List[TestBatchProgress] [optional]

Example

from ri.apiclient.models.test_run_progress import TestRunProgress

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

# convert the object into a dict
test_run_progress_dict = test_run_progress_instance.to_dict()
# create an instance of TestRunProgress from a dict
test_run_progress_from_dict = TestRunProgress.from_dict(test_run_progress_dict)

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