Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1018 Bytes

PiggyBankRead.md

File metadata and controls

32 lines (23 loc) · 1018 Bytes

PiggyBankRead

Properties

Name Type Description Notes
attributes PiggyBank
id str
links ObjectLink
type str Immutable value

Example

from firefly_iii_client.models.piggy_bank_read import PiggyBankRead

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

# convert the object into a dict
piggy_bank_read_dict = piggy_bank_read_instance.to_dict()
# create an instance of PiggyBankRead from a dict
piggy_bank_read_form_dict = piggy_bank_read.from_dict(piggy_bank_read_dict)

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