Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 912 Bytes

TagArray.md

File metadata and controls

31 lines (22 loc) · 912 Bytes

TagArray

Properties

Name Type Description Notes
data List[TagRead]
links PageLink
meta Meta

Example

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_form_dict = tag_array.from_dict(tag_array_dict)

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