Skip to content

Latest commit

 

History

History
27 lines (19 loc) · 898 Bytes

BaseStudyVersions.md

File metadata and controls

27 lines (19 loc) · 898 Bytes

BaseStudyVersions

Properties

Name Type Description Notes

Example

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]