Skip to content

Latest commit

 

History

History
35 lines (27 loc) · 1.75 KB

AnnotationRequestOneOf.md

File metadata and controls

35 lines (27 loc) · 1.75 KB

AnnotationRequestOneOf

Properties

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]
notes AnnotationRequestRelationshipsNotes [optional]
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]
studyset str [optional]

Example

from neurostore_sdk.models.annotation_request_one_of import AnnotationRequestOneOf

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

# convert the object into a dict
annotation_request_one_of_dict = annotation_request_one_of_instance.to_dict()
# create an instance of AnnotationRequestOneOf from a dict
annotation_request_one_of_form_dict = annotation_request_one_of.from_dict(annotation_request_one_of_dict)

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