| Name |
Type |
Description |
Notes |
| id |
str |
|
|
| description |
str |
|
|
| steps |
List[str] |
|
|
| status |
str |
either active or inactive |
|
| last_status_change |
datetime |
|
|
| created_at |
datetime |
|
[optional] |
from sensorbucket.models.pipeline import Pipeline
# TODO update the JSON string below
json = "{}"
# create an instance of Pipeline from a JSON string
pipeline_instance = Pipeline.from_json(json)
# print the JSON string representation of the object
print(Pipeline.to_json())
# convert the object into a dict
pipeline_dict = pipeline_instance.to_dict()
# create an instance of Pipeline from a dict
pipeline_from_dict = Pipeline.from_dict(pipeline_dict)
[Back to Model list] [Back to API list] [Back to README]