1
1
mirror of https://github.com/n8n-io/n8n.git synced 2024-09-20 09:27:44 +03:00
n8n/packages/nodes-base/nodes/InvoiceNinja/PaymentInterface.ts
2020-03-04 12:08:06 -05:00

8 lines
155 B
TypeScript

export interface IPayment {
invoice_id?: number;
amount?: number;
payment_type_id?: number;
transaction_reference?: string;
private_notes?: string;
}