import type * as Square from "../index"; /** * The data associated with a `gift_card.customer_linked` event. */ export interface GiftCardCustomerLinkedEventData { /** The type of object affected by the event. For this event, the value is `gift_card`. */ type?: string | null; /** The ID of the updated gift card. */ id?: string; /** An object that contains the updated gift card and the ID of the linked customer. */ object?: Square.GiftCardCustomerLinkedEventObject; }