Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 851 Bytes

StudyCommon.md

File metadata and controls

29 lines (20 loc) · 851 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_from_dict = StudyCommon.from_dict(study_common_dict)

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