import type * as Square from "../index"; /** * A response that includes the loyalty rewards satisfying the search criteria. */ export interface SearchLoyaltyRewardsResponse { /** Any errors that occurred during the request. */ errors?: Square.Error_[]; /** * The loyalty rewards that satisfy the search criteria. * These are returned in descending order by `updated_at`. */ rewards?: Square.LoyaltyReward[]; /** * The pagination cursor to be used in a subsequent * request. If empty, this is the final response. */ cursor?: string; }