UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

15 lines 398 B
import { Quantity } from './Quantity'; /** Component */ export interface Component { /** Component ID */ id: string; /** Name of the component */ name: string; /** Total quantity for the component */ quantity: Quantity; /** Resource ID */ resourceId: string; /** Total price for this component */ totalPrice: number; } //# sourceMappingURL=Component.d.ts.map