import { Price } from '../order/Price';
import { BillStatusEnum } from './BillStatusEnum';
/** Previous repayment bill */
export interface HistoryRepaymentConsumption {
    /** the number of the bill */
    billingNumber: string;
    /** date of the bill */
    date: string;
    /** the amout which is repayed */
    price: Price;
    /** status of the bill */
    status: BillStatusEnum;
}
//# sourceMappingURL=HistoryRepaymentConsumption.d.ts.map