Name | Type | Description | Notes |
---|---|---|---|
results | List[AnnotationReturn] | [optional] | |
metadata | object | [optional] |
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_form_dict = annotation_list.from_dict(annotation_list_dict)