import { Price } from '../order/Price';
import { BillStatusEnum } from './BillStatusEnum';
/** Previous tollfree bill */
export interface HistoryTollfreeConsumption {
    /** date of the bill */
    date: string;
    /** the amount which is paid by the called number */
    price: Price;
    /** status of the bill */
    status: BillStatusEnum;
}
//# sourceMappingURL=HistoryTollfreeConsumption.d.ts.map