import { Price } from '../order/Price';
/** Informations related to the rate code */
export interface RateCodeInformation {
    /** The Rsva rate code */
    code: string;
    /** Price per call */
    pricePerCallWithoutTax: Price;
    /** Price per minute */
    pricePerMinuteWithoutTax: Price;
}
//# sourceMappingURL=RateCodeInformation.d.ts.map