/**
 * @example
 *     {
 *         pid: "pid",
 *         name: "name"
 *     }
 */
export interface CreateRewardRequest {
    /** Loyalty Program ID */
    pid: string;
    /** Internal name of the reward */
    name: string;
    /** Public facing description of the reward */
    publicDescription?: string;
    /** URL of the public image for the reward */
    publicImage?: string;
    /** Public facing name of the reward */
    publicName?: string;
}
