UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

13 lines 377 B
import { Price } from '../order/Price'; /** Informations related to a line offer */ export interface AccessoryOffer { /** The accessory description */ description?: string; /** The accessory name */ name: string; /** Accessory price */ price: Price; /** An URL to accessory details */ url?: string; } //# sourceMappingURL=AccessoryOffer.d.ts.map