/**
 * Shell Data & Reporting APIsLib
 *
 * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
 */
import { Schema } from '../schema';
export interface PricingHistory {
    /**
     * Pricing History Period Start date and should be the first date of the month.
     * Format: YYYYMMDD
     */
    fromDate?: string | null;
    /**
     * Pricing History Period end date and should be the last date of the period month.
     * Format: YYYYMMDD
     */
    toDate?: string | null;
    /**
     * Pricing History Period Fees Rule ID that is associated to the period of that associated payer.
     * Example: 8101
     */
    feesRuleID?: number | null;
    /** Pricing History Period Fees Rule Description that is associated to the period of that associated payer. */
    feesRuleDescription?: string | null;
    /** Total Quantity for the Pricing History Period that is associated to that payer. */
    totalVolume?: number | null;
}
export declare const pricingHistorySchema: Schema<PricingHistory>;
