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