UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

11 lines 419 B
import { BillingStatisticsLine } from './BillingStatisticsLine'; /** Billing statistics for the current period */ export interface BillingStatistics { /** End of the billing period */ endDate: string; /** List of lines associated to this statistics entity. */ lines: BillingStatisticsLine[]; /** Start of the billing period */ startDate: string; } //# sourceMappingURL=BillingStatistics.d.ts.map