Name | Type | Description | Notes |
---|---|---|---|
results | List[NeurostoreStudyReturn] | [optional] | |
metadata | object | [optional] |
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_form_dict = neurostore_study_list.from_dict(neurostore_study_list_dict)