You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Compact summaries of cached annotations paired with this studyset snapshot.
[optional]
neurostore_url
str
[optional] [readonly]
version
str
A string representing a labeled version of this particular studyset.
[optional]
Example
fromneurosynth_compose_sdk.models.meta_analysis_neurostore_studysetimportMetaAnalysisNeurostoreStudyset# TODO update the JSON string belowjson="{}"# create an instance of MetaAnalysisNeurostoreStudyset from a JSON stringmeta_analysis_neurostore_studyset_instance=MetaAnalysisNeurostoreStudyset.from_json(json)
# print the JSON string representation of the objectprint(MetaAnalysisNeurostoreStudyset.to_json())
# convert the object into a dictmeta_analysis_neurostore_studyset_dict=meta_analysis_neurostore_studyset_instance.to_dict()
# create an instance of MetaAnalysisNeurostoreStudyset from a dictmeta_analysis_neurostore_studyset_from_dict=MetaAnalysisNeurostoreStudyset.from_dict(meta_analysis_neurostore_studyset_dict)