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