Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 985 Bytes

BaseStudyList.md

File metadata and controls

29 lines (21 loc) · 985 Bytes

BaseStudyList

Properties

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

Example

from neurostore_sdk.models.base_study_list import BaseStudyList

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

# convert the object into a dict
base_study_list_dict = base_study_list_instance.to_dict()
# create an instance of BaseStudyList from a dict
base_study_list_form_dict = base_study_list.from_dict(base_study_list_dict)

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