Skip to content

Latest commit

 

History

History
38 lines (30 loc) · 1.22 KB

BaseStudy.md

File metadata and controls

38 lines (30 loc) · 1.22 KB

BaseStudy

Properties

Name Type Description Notes
metadata object [optional]
versions BaseStudyVersions [optional]
name str [optional]
description str [optional]
publication str [optional]
doi str [optional]
pmid str [optional]
authors str [optional]
year int [optional]
level str [optional]
pmcid str [optional]

Example

from neurostore_sdk.models.base_study import BaseStudy

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

# convert the object into a dict
base_study_dict = base_study_instance.to_dict()
# create an instance of BaseStudy from a dict
base_study_form_dict = base_study.from_dict(base_study_dict)

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