UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

14 lines 449 B
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