import type * as Square from "../index"; /** * An object that contains the gift card associated with a `gift_card.updated` event. */ export interface GiftCardUpdatedEventObject { /** * The gift card with the updated `balance_money`, `state`, or `customer_ids` field. * Some events can affect both `balance_money` and `state`. */ giftCard?: Square.GiftCard; }