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] |
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)