Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 918 Bytes

AnnotationCommon.md

File metadata and controls

28 lines (20 loc) · 918 Bytes

AnnotationCommon

Properties

Name Type Description Notes
studyset str [optional]

Example

from neurostore_sdk.models.annotation_common import AnnotationCommon

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

# convert the object into a dict
annotation_common_dict = annotation_common_instance.to_dict()
# create an instance of AnnotationCommon from a dict
annotation_common_form_dict = annotation_common.from_dict(annotation_common_dict)

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