import type * as Square from "../index"; /** * The data associated with the event. */ export interface CustomerDeletedEventData { /** The type of object affected by the event. For this event, the value is `customer`. */ type?: string | null; /** The ID of the deleted customer. */ id?: string; /** An object that contains the deleted customer. */ object?: Square.CustomerDeletedEventObject; }