UNPKG

harvest

Version:
21 lines (20 loc) 590 B
import { PagenationParameters } from './base/pagenation'; export interface InvoicePayment { id: number; amount: number; paid_at: string; paid_date: string; recorded_by: string; recorded_by_email: string; notes: string; transaction_id: string; payment_gateway: object; created_at: string; updated_at: string; } export interface InvoicePaymentsPagenationResponse extends PagenationParameters { invoicePayments: InvoicePayment[]; } export interface InvoicePaymentsPagenationParameters extends PagenationParameters { updated_since: string; }