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