/**
 * @example
 *     {
 *         pid: "pid"
 *     }
 */
export interface GetParameterSubscriptionInfoRequest {
    /** Loyalty Program ID. A unique identifier for the loyalty program. */
    pid: string;
    /** The contact ID to filter by. */
    contactId?: string;
    /** A list of filter parameters for querying the subscription info. */
    params?: string;
    /** The loyalty subscription ID to filter by. */
    loyaltySubscriptionId?: string;
    /** Include balances tied to internal definitions. */
    includeInternal?: boolean;
}
