import type * as Square from "../index"; /** * The set of search requirements. */ export interface SearchLoyaltyRewardsRequestLoyaltyRewardQuery { /** The ID of the [loyalty account](entity:LoyaltyAccount) to which the loyalty reward belongs. */ loyaltyAccountId: string; /** * The status of the loyalty reward. * See [LoyaltyRewardStatus](#type-loyaltyrewardstatus) for possible values */ status?: Square.LoyaltyRewardStatus; }