Skip to content

Latest commit

 

History

History
31 lines (23 loc) · 1.29 KB

AnnotationBase.md

File metadata and controls

31 lines (23 loc) · 1.29 KB

AnnotationBase

Properties

Name Type Description Notes
name str Descriptive name for the annotation. [optional]
description str Long form description of the annotation. [optional]
metadata object object describing metadata about the annotation, such as software used or descriptions of the keys used in the annotation. [optional]
note_keys object The keys (columns) in the annotation and the key's respective data type (such as an integer or string). [optional]

Example

from neurostore_sdk.models.annotation_base import AnnotationBase

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

# convert the object into a dict
annotation_base_dict = annotation_base_instance.to_dict()
# create an instance of AnnotationBase from a dict
annotation_base_form_dict = annotation_base.from_dict(annotation_base_dict)

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