Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.1 KB

TestStepResult.md

File metadata and controls

32 lines (23 loc) · 1.1 KB

TestStepResult

Properties

Name Type Description Notes
status int [optional]
position int [optional]
attachments List[Attachment] [optional]
steps List[object] Nested steps results will be here. The same structure is used for them for them. [optional]

Example

from qaseio.models.test_step_result import TestStepResult

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

# convert the object into a dict
test_step_result_dict = test_step_result_instance.to_dict()
# create an instance of TestStepResult from a dict
test_step_result_form_dict = test_step_result.from_dict(test_step_result_dict)

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