Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 1.07 KB

StudysetReferenceList.md

File metadata and controls

29 lines (21 loc) · 1.07 KB

StudysetReferenceList

Properties

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

Example

from neurosynth_compose_sdk.models.studyset_reference_list import StudysetReferenceList

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

# convert the object into a dict
studyset_reference_list_dict = studyset_reference_list_instance.to_dict()
# create an instance of StudysetReferenceList from a dict
studyset_reference_list_form_dict = studyset_reference_list.from_dict(studyset_reference_list_dict)

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