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