import type * as Square from "../index"; /** * An object that contains the customer associated with the event. */ export interface CustomerDeletedEventObject { /** The deleted customer. */ customer?: Square.Customer; /** Information about the change that triggered the event. This field is returned only if the customer is deleted by a merge operation. */ eventContext?: Square.CustomerDeletedEventEventContext; }