Name | Type | Description | Notes |
---|---|---|---|
data | List[BillRead] | ||
meta | Meta |
from firefly_iii_client.models.bill_array import BillArray
# TODO update the JSON string below
json = "{}"
# create an instance of BillArray from a JSON string
bill_array_instance = BillArray.from_json(json)
# print the JSON string representation of the object
print(BillArray.to_json())
# convert the object into a dict
bill_array_dict = bill_array_instance.to_dict()
# create an instance of BillArray from a dict
bill_array_form_dict = bill_array.from_dict(bill_array_dict)