Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 1015 Bytes

AnnotationUpdateAllOf.md

File metadata and controls

28 lines (20 loc) · 1015 Bytes

AnnotationUpdateAllOf

Properties

Name Type Description Notes
cached_studyset_id str [optional]

Example

from neurosynth_compose_sdk.models.annotation_update_all_of import AnnotationUpdateAllOf

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

# convert the object into a dict
annotation_update_all_of_dict = annotation_update_all_of_instance.to_dict()
# create an instance of AnnotationUpdateAllOf from a dict
annotation_update_all_of_form_dict = annotation_update_all_of.from_dict(annotation_update_all_of_dict)

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