import { Price } from '../order/Price';
/** Detailed informations related to this number */
export interface DetailedRateCodeInformation {
    /** Cancelable datetime deadline for the new scheduled rateCode */
    cancelLimitDatetime?: string;
    /** Effective datetime */
    effectiveDatetime?: string;
    /** Price per call */
    pricePerCallWithoutTax: Price;
    /** Price in minute */
    pricePerMinuteWithoutTax: Price;
    /** Scheduled rate code */
    rateCode: string;
    /** Repayment per call */
    repaymentPricePerCallWithoutTax: Price;
    /** Repayment per minute */
    repaymentPricePerMinuteWithoutTax: Price;
    /** Fees concerning rateCode update */
    updateRateCodePriceWithoutTax?: Price;
}
//# sourceMappingURL=DetailedRateCodeInformation.d.ts.map