UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

16 lines 497 B
import { PackCapabilities } from './PackCapabilities'; import { Price } from '../../order/Price'; /** Pack of xDSL services */ export interface PackAdsl { /** Capabilities of the pack */ capabilities: PackCapabilities; /** Customer pack description */ description?: string; /** Name of the offer */ offerDescription: string; /** Price of the offer */ offerPrice: Price; /** Name of the xdsl pack */ packName: string; } //# sourceMappingURL=PackAdsl.d.ts.map