Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 954 Bytes

StudysetList.md

File metadata and controls

29 lines (21 loc) · 954 Bytes

StudysetList

Properties

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

Example

from neurosynth_compose_sdk.models.studyset_list import StudysetList

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

# convert the object into a dict
studyset_list_dict = studyset_list_instance.to_dict()
# create an instance of StudysetList from a dict
studyset_list_form_dict = studyset_list.from_dict(studyset_list_dict)

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