Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.18 KB

File metadata and controls

36 lines (27 loc) · 1.18 KB

StepOutput

Properties

Name Type Description Notes
id str Stable step identifier within the message
name str The name of the step
kind StepKind
args Args [optional]
detail str [optional]
start_time datetime The start time of the step
end_time datetime [optional]
steps List[StepOutput] [optional]

Example

from ksapi.models.step_output import StepOutput

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

# convert the object into a dict
step_output_dict = step_output_instance.to_dict()
# create an instance of StepOutput from a dict
step_output_from_dict = StepOutput.from_dict(step_output_dict)

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