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