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