UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

17 lines 545 B
import { Contract } from './Contract'; import { OrderDetail } from './OrderDetail'; import { OrderPrices } from './OrderPrices'; /** An order */ export interface Order { /** List of contracts related to the order */ contracts: Contract[]; /** Details of the order */ details: OrderDetail[]; /** Identifier of the order */ orderId?: number; /** Prices of the order including with and without taxes */ prices: OrderPrices; /** URL to download the order */ url?: string; } //# sourceMappingURL=Order.d.ts.map