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