Skip to content

Latest commit

 

History

History
32 lines (24 loc) · 1.11 KB

NeurostoreStudy.md

File metadata and controls

32 lines (24 loc) · 1.11 KB

NeurostoreStudy

Properties

Name Type Description Notes
neurostore_id str [optional] [readonly]
analyses List[NeurostoreAnalysis] [optional]
exception str [optional]
traceback str [optional]
status str [optional]

Example

from neurosynth_compose_sdk.models.neurostore_study import NeurostoreStudy

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

# convert the object into a dict
neurostore_study_dict = neurostore_study_instance.to_dict()
# create an instance of NeurostoreStudy from a dict
neurostore_study_form_dict = neurostore_study.from_dict(neurostore_study_dict)

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