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] |
created_at | datetime | time the resource was created on the database | [optional] [readonly] |
updated_at | str | when was the resource last modified/updated. | [optional] [readonly] |
id | str | short UUID specifying the location of this resource | [optional] |
public | bool | whether the resource is listed in public searches or not | [optional] [default to True] |
user | str | who owns the resource | [optional] [readonly] |
source | str | [optional] | |
source_id | str | [optional] | |
source_updated_at | str | [optional] [readonly] | |
notes | AnnotationReturnRelationshipsNotes | [optional] | |
studyset | str | [optional] |
from neurostore_sdk.models.annotation_return import AnnotationReturn
# TODO update the JSON string below
json = "{}"
# create an instance of AnnotationReturn from a JSON string
annotation_return_instance = AnnotationReturn.from_json(json)
# print the JSON string representation of the object
print AnnotationReturn.to_json()
# convert the object into a dict
annotation_return_dict = annotation_return_instance.to_dict()
# create an instance of AnnotationReturn from a dict
annotation_return_form_dict = annotation_return.from_dict(annotation_return_dict)