import { Price } from '../../order/Price';
/** Details of fees when the consumption exceeds the size of the plans */
export interface OverQuota {
    /** List of plan ids */
    ids: string[];
    /** Quantity consumed over the size of the plans */
    quantity: number;
    /** Total price of the over quota, computed from quantity and unit price */
    totalPrice: Price;
    /** Unit price for the over quota */
    unitPrice: Price;
}
//# sourceMappingURL=OverQuota.d.ts.map