import type * as Square from "../index"; /** * The data associated with a `loyalty.account.created` event. */ export interface LoyaltyAccountCreatedEventData { /** 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 new loyalty account. */ object?: Square.LoyaltyAccountCreatedEventObject; }