UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

25 lines 478 B
import { Price } from '../order/Price'; /** Details about an Order */ export interface Order { /** */ date?: string; /** */ expirationDate?: string; /** */ orderId: number; /** */ password: string; /** */ pdfUrl: string; /** */ priceWithTax: Price; /** */ priceWithoutTax: Price; /** */ retractionDate?: string; /** */ tax: Price; /** */ url: string; } //# sourceMappingURL=Order.d.ts.map