fix(Invoice Ninja Node): Fix assigning an invoice to a payment (#9590)

This commit is contained in:
CodeShakingSheep
2024-07-03 14:22:48 -05:00
committed by GitHub
parent f64ca621e1
commit 7a3c127b2c
2 changed files with 23 additions and 3 deletions

View File

@@ -2,7 +2,14 @@ export interface IPayment {
invoice_id?: number;
amount?: number;
payment_type_id?: number;
type_id?: number;
transaction_reference?: string;
private_notes?: string;
client_id?: string;
invoices?: IInvoice[];
}
export interface IInvoice {
invoice_id: string;
amount: number;
}