Skip to content

Latest commit

 

History

History
32 lines (24 loc) · 1.28 KB

AnnotationUpdate.md

File metadata and controls

32 lines (24 loc) · 1.28 KB

AnnotationUpdate

Properties

Name Type Description Notes
cached_studyset_id str [optional]
neurostore_id str the id of the annotation on neurostore [optional]
snapshot object the snapshot taken of the annotation pending a successful run of the meta-analytic algorithm [optional]
studyset str The related cached studyset to this annotation. [optional] [readonly]
neurostore_url str [optional] [readonly]

Example

from neurosynth_compose_sdk.models.annotation_update import AnnotationUpdate

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

# convert the object into a dict
annotation_update_dict = annotation_update_instance.to_dict()
# create an instance of AnnotationUpdate from a dict
annotation_update_form_dict = annotation_update.from_dict(annotation_update_dict)

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