Name | Type | Description | Notes |
---|---|---|---|
data | ResultStepData | [optional] | |
execution | ResultStepExecution | [optional] | |
steps | List[object] | Nested steps will be here. The same structure is used for them. | [optional] |
from qase.api_client_v2.models.result_step import ResultStep
# TODO update the JSON string below
json = "{}"
# create an instance of ResultStep from a JSON string
result_step_instance = ResultStep.from_json(json)
# print the JSON string representation of the object
print(ResultStep.to_json())
# convert the object into a dict
result_step_dict = result_step_instance.to_dict()
# create an instance of ResultStep from a dict
result_step_form_dict = result_step.from_dict(result_step_dict)