mirror of
https://github.com/n8n-io/n8n.git
synced 2025-01-06 02:17:29 -08:00
15 lines
281 B
TypeScript
15 lines
281 B
TypeScript
export interface IBankTransaction {
|
|
amount?: number;
|
|
bank_integration_id?: number;
|
|
base_type?: string;
|
|
currency_id?: number;
|
|
date?: string;
|
|
description?: string;
|
|
id?: string;
|
|
payment_id?: string;
|
|
}
|
|
|
|
export interface IBankTransactions {
|
|
transactions: IBankTransaction[];
|
|
}
|