UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

22 lines 486 B
import { Price } from '../order/Price'; import { LongPrice } from '../order/LongPrice'; /** Information about a Bill entry */ export interface BillDetail { /** */ billDetailId: string; /** */ description: string; /** */ domain: string; /** */ periodEnd?: string; /** */ periodStart?: string; /** */ quantity: string; /** */ totalPrice: Price; /** */ unitPrice: LongPrice; } //# sourceMappingURL=BillDetail.d.ts.map