Name |
Type |
Description |
Notes |
metadata |
object |
|
[optional] [readonly] |
annotation_csv |
str |
annotation object expressed as a CSV |
|
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]