exporting an annotation as a CSV for easier editing
Name | Type | Description | Notes |
---|---|---|---|
metadata | object | [optional] [readonly] | |
annotation_csv | str | annotation object expressed as a CSV |
from neurostore_sdk.models.annotation_export import AnnotationExport
# TODO update the JSON string below
json = "{}"
# create an instance of AnnotationExport from a JSON string
annotation_export_instance = AnnotationExport.from_json(json)
# print the JSON string representation of the object
print AnnotationExport.to_json()
# convert the object into a dict
annotation_export_dict = annotation_export_instance.to_dict()
# create an instance of AnnotationExport from a dict
annotation_export_form_dict = annotation_export.from_dict(annotation_export_dict)