Name | Type | Description | Notes |
---|---|---|---|
level | str | [optional] |
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)