n8n/packages/nodes-base/nodes/InvoiceNinja/BankTransactionInterface.ts

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
182 B
TypeScript
Raw Normal View History

export interface IBankTransaction {
amount?: number;
bank_integration_id?: number;
base_type?: string;
date?: string;
description?: string;
id?: string;
paymentId?: string;
}