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