Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 934 Bytes

Step.md

File metadata and controls

34 lines (25 loc) · 934 Bytes

Step

Properties

Name Type Description Notes
id int [readonly]
title str
description str [optional]
status StepStatusEnum [optional]
position int
job int

Example

from iblai.models.step import Step

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

# convert the object into a dict
step_dict = step_instance.to_dict()
# create an instance of Step from a dict
step_from_dict = Step.from_dict(step_dict)

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