UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

26 lines 510 B
import { CategoryEnum } from './CategoryEnum'; import { Price } from '../order/Price'; /** Details about a Bill */ export interface Bill { /** */ billId: string; /** */ category: CategoryEnum; /** */ date: string; /** */ orderId: number; /** */ password: string; /** */ pdfUrl: string; /** */ priceWithTax: Price; /** */ priceWithoutTax: Price; /** */ tax: Price; /** */ url: string; } //# sourceMappingURL=Bill.d.ts.map