Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 1.06 KB

AnnotationReturnOneOf.md

File metadata and controls

29 lines (21 loc) · 1.06 KB

AnnotationReturnOneOf

Properties

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

Example

from neurostore_sdk.models.annotation_return_one_of import AnnotationReturnOneOf

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

# convert the object into a dict
annotation_return_one_of_dict = annotation_return_one_of_instance.to_dict()
# create an instance of AnnotationReturnOneOf from a dict
annotation_return_one_of_form_dict = annotation_return_one_of.from_dict(annotation_return_one_of_dict)

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