import { Price } from '../order/Price';
import { RmaOfferTypeEnum } from './RmaOfferTypeEnum';
import { ProtocolEnum } from './ProtocolEnum';
/** Informations related to phone capabilities */
export interface LinePhone {
    /** Brand name of the phone */
    brand: string;
    /** The phone description */
    description: string;
    /** Setup fees */
    fees?: Price;
    /** Maximum number of lines managed by a phone */
    maxline: number;
    /** Type of purchase */
    offerType: RmaOfferTypeEnum;
    /** Telephony price */
    price: Price;
    /** Phone protocol */
    protocol: ProtocolEnum;
}
//# sourceMappingURL=LinePhone.d.ts.map