import type * as Square from "../index"; /** * An object that contains the gift card and the customer ID associated with a * `gift_card.customer_linked` event. */ export interface GiftCardCustomerUnlinkedEventObject { /** * The gift card with the updated `customer_ids` field. * The field is removed if the gift card is not linked to any customers. */ giftCard?: Square.GiftCard; /** The ID of the unlinked [customer](entity:Customer). */ unlinkedCustomerId?: string | null; }