/**
 * @example
 *     {
 *         pid: "pid"
 *     }
 */
export interface ValidateRewardRequest {
    /** Loyalty Program ID */
    pid: string;
    /** Unique identifier for the attributed reward */
    attributedRewardId?: string;
    /** Validation code for the reward */
    code?: string;
    /** Unique identifier for the contact */
    contactId?: number;
    /** Identifier for the loyalty subscription */
    loyaltySubscriptionId?: string;
    /** Identifier for the point of sale */
    pointOfSellId?: string;
    /** Unique identifier for the reward */
    rewardId?: string;
}
