Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.1 KB

PipelineStudyResultList.md

File metadata and controls

30 lines (21 loc) · 1.1 KB

PipelineStudyResultList

Properties

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

Example

from neurostore_sdk.models.pipeline_study_result_list import PipelineStudyResultList

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

# convert the object into a dict
pipeline_study_result_list_dict = pipeline_study_result_list_instance.to_dict()
# create an instance of PipelineStudyResultList from a dict
pipeline_study_result_list_from_dict = PipelineStudyResultList.from_dict(pipeline_study_result_list_dict)

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