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