You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ID of the destination account. Submit either this or destination_name.
[optional]
foreign_amount
str
Foreign amount of the transaction.
[optional]
foreign_currency_id
str
Submit either a foreign_currency_id or a foreign_currency_code, or neither.
[optional]
id
str
piggy_bank_id
str
[optional]
source_id
str
ID of the source account. Submit either this or source_name.
[optional]
tags
List[str]
Array of tags.
[optional]
Example
fromfirefly_iii_client.models.recurrence_transaction_updateimportRecurrenceTransactionUpdate# TODO update the JSON string belowjson="{}"# create an instance of RecurrenceTransactionUpdate from a JSON stringrecurrence_transaction_update_instance=RecurrenceTransactionUpdate.from_json(json)
# print the JSON string representation of the objectprint(RecurrenceTransactionUpdate.to_json())
# convert the object into a dictrecurrence_transaction_update_dict=recurrence_transaction_update_instance.to_dict()
# create an instance of RecurrenceTransactionUpdate from a dictrecurrence_transaction_update_form_dict=recurrence_transaction_update.from_dict(recurrence_transaction_update_dict)