UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

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