Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.02 KB

File metadata and controls

29 lines (20 loc) · 1.02 KB

PipelineStudyResultSearch

Properties

Name Type Description Notes
study_ids List[str]

Example

from neurostore_sdk.models.pipeline_study_result_search import PipelineStudyResultSearch

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

# convert the object into a dict
pipeline_study_result_search_dict = pipeline_study_result_search_instance.to_dict()
# create an instance of PipelineStudyResultSearch from a dict
pipeline_study_result_search_from_dict = PipelineStudyResultSearch.from_dict(pipeline_study_result_search_dict)

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