import type * as Square from "../index"; export interface InvoicePaymentMadeEventData { /** Name of the affected object’s type, `"invoice"`. */ type?: string | null; /** ID of the affected invoice. */ id?: string; /** An object containing the invoice that was paid. */ object?: Square.InvoicePaymentMadeEventObject; }