mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-15 00:54:06 -08:00
10 lines
182 B
TypeScript
10 lines
182 B
TypeScript
export interface IBankTransaction {
|
|
amount?: number;
|
|
bank_integration_id?: number;
|
|
base_type?: string;
|
|
date?: string;
|
|
description?: string;
|
|
id?: string;
|
|
paymentId?: string;
|
|
}
|