import type * as Square from "../index"; /** * A response that includes the `LoyaltyEvent` published for redeeming the reward. */ export interface RedeemLoyaltyRewardResponse { /** Any errors that occurred during the request. */ errors?: Square.Error_[]; /** The `LoyaltyEvent` for redeeming the reward. */ event?: Square.LoyaltyEvent; }