@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
19 lines • 635 B
TypeScript
import { PackCapabilities } from './PackCapabilities';
import { ResourceMetadata } from '../../iam/ResourceMetadata';
import { Price } from '../../order/Price';
/** Pack of xDSL services */
export interface PackAdslWithIAM {
/** Capabilities of the pack */
capabilities: PackCapabilities;
/** Customer pack description */
description?: string;
/** IAM resource metadata */
iam?: ResourceMetadata;
/** Name of the offer */
offerDescription: string;
/** Price of the offer */
offerPrice: Price;
/** Name of the xdsl pack */
packName: string;
}
//# sourceMappingURL=PackAdslWithIAM.d.ts.map