Name |
Type |
Description |
Notes |
from neurostore_sdk.models.base_study_versions import BaseStudyVersions
# TODO update the JSON string below
json = "{}"
# create an instance of BaseStudyVersions from a JSON string
base_study_versions_instance = BaseStudyVersions.from_json(json)
# print the JSON string representation of the object
print BaseStudyVersions.to_json()
# convert the object into a dict
base_study_versions_dict = base_study_versions_instance.to_dict()
# create an instance of BaseStudyVersions from a dict
base_study_versions_form_dict = base_study_versions.from_dict(base_study_versions_dict)
[Back to Model list] [Back to API list] [Back to README]