Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 880 Bytes

File metadata and controls

30 lines (21 loc) · 880 Bytes

TagList

Properties

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

Example

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)

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