import type * as Square from "../index"; /** * A response that includes the loyalty reward. */ export interface GetLoyaltyRewardResponse { /** Any errors that occurred during the request. */ errors?: Square.Error_[]; /** The loyalty reward retrieved. */ reward?: Square.LoyaltyReward; }