Name | Type | Description | Notes |
---|---|---|---|
id | int | [optional] | |
title | str | [optional] | |
description | str | [optional] | |
status | int | [optional] | |
status_text | str | [optional] | |
start_time | datetime | [optional] | |
end_time | datetime | [optional] | |
public | bool | [optional] | |
stats | RunStats | [optional] | |
time_spent | int | Time in ms. | [optional] |
environment | RunEnvironment | [optional] | |
milestone | RunMilestone | [optional] | |
custom_fields | List[CustomFieldValue] | [optional] | |
tags | List[TagValue] | [optional] | |
cases | List[int] | [optional] |
from qaseio.models.run import Run
# TODO update the JSON string below
json = "{}"
# create an instance of Run from a JSON string
run_instance = Run.from_json(json)
# print the JSON string representation of the object
print Run.to_json()
# convert the object into a dict
run_dict = run_instance.to_dict()
# create an instance of Run from a dict
run_form_dict = run.from_dict(run_dict)