Skip to content

Latest commit

 

History

History
30 lines (22 loc) · 1.03 KB

AnnotationExport.md

File metadata and controls

30 lines (22 loc) · 1.03 KB

AnnotationExport

exporting an annotation as a CSV for easier editing

Properties

Name Type Description Notes
metadata object [optional] [readonly]
annotation_csv str annotation object expressed as a CSV

Example

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)

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