| Name | Type | Description | Notes |
|---|---|---|---|
| results | List[TagReturn] | [optional] | |
| metadata | object | [optional] |
from neurosynth_compose_sdk.models.tag_list import TagList
# TODO update the JSON string below
json = "{}"
# create an instance of TagList from a JSON string
tag_list_instance = TagList.from_json(json)
# print the JSON string representation of the object
print(TagList.to_json())
# convert the object into a dict
tag_list_dict = tag_list_instance.to_dict()
# create an instance of TagList from a dict
tag_list_from_dict = TagList.from_dict(tag_list_dict)