Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.04 KB

ResultStep.md

File metadata and controls

31 lines (22 loc) · 1.04 KB

ResultStep

Properties

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]

Example

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)

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