Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.11 KB

NeurostoreStudy.md

File metadata and controls

33 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_from_dict = NeurostoreStudy.from_dict(neurostore_study_dict)

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