Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 881 Bytes

BillArray.md

File metadata and controls

30 lines (21 loc) · 881 Bytes

BillArray

Properties

Name Type Description Notes
data List[BillRead]
meta Meta

Example

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)

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