Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 951 Bytes

PipelineList.md

File metadata and controls

29 lines (21 loc) · 951 Bytes

PipelineList

Properties

Name Type Description Notes
results List[Pipeline] [optional]
metadata Metadata [optional]

Example

from neurostore_sdk.models.pipeline_list import PipelineList

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

# convert the object into a dict
pipeline_list_dict = pipeline_list_instance.to_dict()
# create an instance of PipelineList from a dict
pipeline_list_form_dict = pipeline_list.from_dict(pipeline_list_dict)

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