Skip to content

Latest commit

 

History

History
42 lines (33 loc) · 2 KB

RecurrenceTransactionStore.md

File metadata and controls

42 lines (33 loc) · 2 KB

RecurrenceTransactionStore

Properties

Name Type Description Notes
amount str Amount of the transaction.
bill_id str Optional. [optional]
budget_id str The budget ID for this transaction. [optional]
category_id str Category ID for this transaction. [optional]
currency_code str Submit either a currency_id or a currency_code. [optional]
currency_id str Submit either a currency_id or a currency_code. [optional]
description str
destination_id str ID of the destination account.
foreign_amount str Foreign amount of the transaction. [optional]
foreign_currency_code str Submit either a foreign_currency_id or a foreign_currency_code, or neither. [optional]
foreign_currency_id str Submit either a foreign_currency_id or a foreign_currency_code, or neither. [optional]
piggy_bank_id str Optional. [optional]
source_id str ID of the source account.
tags List[str] Array of tags. [optional]

Example

from firefly_iii_client.models.recurrence_transaction_store import RecurrenceTransactionStore

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

# convert the object into a dict
recurrence_transaction_store_dict = recurrence_transaction_store_instance.to_dict()
# create an instance of RecurrenceTransactionStore from a dict
recurrence_transaction_store_form_dict = recurrence_transaction_store.from_dict(recurrence_transaction_store_dict)

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