mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00: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;
|
|
}
|