Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 941 Bytes

CategoryArray.md

File metadata and controls

30 lines (21 loc) · 941 Bytes

CategoryArray

Properties

Name Type Description Notes
data List[CategoryRead]
meta Meta

Example

from firefly_iii_client.models.category_array import CategoryArray

# TODO update the JSON string below
json = "{}"
# create an instance of CategoryArray from a JSON string
category_array_instance = CategoryArray.from_json(json)
# print the JSON string representation of the object
print(CategoryArray.to_json())

# convert the object into a dict
category_array_dict = category_array_instance.to_dict()
# create an instance of CategoryArray from a dict
category_array_form_dict = category_array.from_dict(category_array_dict)

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