Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1009 Bytes

PiggyBankArray.md

File metadata and controls

31 lines (22 loc) · 1009 Bytes

PiggyBankArray

Properties

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

Example

from firefly_iii_client.models.piggy_bank_array import PiggyBankArray

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

# convert the object into a dict
piggy_bank_array_dict = piggy_bank_array_instance.to_dict()
# create an instance of PiggyBankArray from a dict
piggy_bank_array_form_dict = piggy_bank_array.from_dict(piggy_bank_array_dict)

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