import { Price } from '../order/Price';
/** Details for a channels pack */
export interface TrunkSimultaneousPack {
    /** The number of channels included in the pack */
    channels: number;
    /** The quantity of packs present in the combination */
    quantity: number;
    /** The unit price of the channels pack */
    unitPrice: Price;
}
//# sourceMappingURL=TrunkSimultaneousPack.d.ts.map