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