Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 985 Bytes

AnnotationList.md

File metadata and controls

30 lines (21 loc) · 985 Bytes

AnnotationList

Properties

Name Type Description Notes
results List[AnnotationReturn] [optional]
metadata object [optional]

Example

from neurosynth_compose_sdk.models.annotation_list import AnnotationList

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

# convert the object into a dict
annotation_list_dict = annotation_list_instance.to_dict()
# create an instance of AnnotationList from a dict
annotation_list_from_dict = AnnotationList.from_dict(annotation_list_dict)

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