import type * as Square from "../index"; /** * The search criteria for the loyalty accounts. */ export interface SearchLoyaltyAccountsRequestLoyaltyAccountQuery { /** * The set of mappings to use in the loyalty account search. * * This cannot be combined with `customer_ids`. * * Max: 30 mappings */ mappings?: Square.LoyaltyAccountMapping[] | null; /** * The set of customer IDs to use in the loyalty account search. * * This cannot be combined with `mappings`. * * Max: 30 customer IDs */ customerIds?: string[] | null; }