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