fix: Sync Plaid credit card account type

This commit is contained in:
Ahmed Bouhuolia
2024-10-16 19:46:39 +02:00
parent 5649657bf0
commit 8a4034cc5d
5 changed files with 35 additions and 5 deletions

View File

@@ -11,6 +11,12 @@ export default class UncategorizedCashflowTransaction extends mixin(
) {
id!: number;
date!: Date | string;
/**
* Transaction amount.
* Negative represents to spending and positive to deposit/card charge.
* @param {number}
*/
amount!: number;
categorized!: boolean;
accountId!: number;