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