import type * as Square from "../index"; /** * The data associated with a `loyalty.promotion.created` event. */ export interface LoyaltyPromotionCreatedEventData { /** The type of object affected by the event. For this event, the value is `loyalty_promotion`. */ type?: string | null; /** The ID of the affected loyalty promotion. */ id?: string; /** An object that contains the loyalty promotion that was created. */ object?: Square.LoyaltyPromotionCreatedEventObject; }