export interface InvoiceDeletedEventData { /** Name of the affected object’s type, `"invoice"`. */ type?: string | null; /** ID of the affected invoice. */ id?: string; /** Indicates that the invoice was deleted. */ deleted?: boolean | null; }