Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 850 Bytes

StudyCommon.md

File metadata and controls

28 lines (20 loc) · 850 Bytes

StudyCommon

Properties

Name Type Description Notes
level str [optional]

Example

from neurostore_sdk.models.study_common import StudyCommon

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

# convert the object into a dict
study_common_dict = study_common_instance.to_dict()
# create an instance of StudyCommon from a dict
study_common_form_dict = study_common.from_dict(study_common_dict)

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