| Name | Type | Description | Notes |
|---|---|---|---|
| data | List[TagRead] | ||
| links | PageLink | ||
| meta | Meta |
from firefly_iii_client.models.tag_array import TagArray
# TODO update the JSON string below
json = "{}"
# create an instance of TagArray from a JSON string
tag_array_instance = TagArray.from_json(json)
# print the JSON string representation of the object
print(TagArray.to_json())
# convert the object into a dict
tag_array_dict = tag_array_instance.to_dict()
# create an instance of TagArray from a dict
tag_array_from_dict = TagArray.from_dict(tag_array_dict)