Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.38 KB

ResultStepExecution.md

File metadata and controls

34 lines (25 loc) · 1.38 KB

ResultStepExecution

Properties

Name Type Description Notes
start_time float Unix epoch time in seconds (whole part) and milliseconds (fractional part). [optional]
end_time float Unix epoch time in seconds (whole part) and milliseconds (fractional part). [optional]
status ResultStepStatus
duration int Duration of the test step execution in milliseconds. [optional]
comment str [optional]
attachments List[str] [optional]

Example

from qase.api_client_v2.models.result_step_execution import ResultStepExecution

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

# convert the object into a dict
result_step_execution_dict = result_step_execution_instance.to_dict()
# create an instance of ResultStepExecution from a dict
result_step_execution_form_dict = result_step_execution.from_dict(result_step_execution_dict)

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