Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.04 KB

NeurostoreStudyList.md

File metadata and controls

30 lines (21 loc) · 1.04 KB

NeurostoreStudyList

Properties

Name Type Description Notes
results List[NeurostoreStudyReturn] [optional]
metadata object [optional]

Example

from neurosynth_compose_sdk.models.neurostore_study_list import NeurostoreStudyList

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

# convert the object into a dict
neurostore_study_list_dict = neurostore_study_list_instance.to_dict()
# create an instance of NeurostoreStudyList from a dict
neurostore_study_list_from_dict = NeurostoreStudyList.from_dict(neurostore_study_list_dict)

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