import { Ip } from '../Ip';
import { PhoneConfigurationProperty } from './PhoneConfigurationProperty';
import { ProtocolEnum } from './ProtocolEnum';
/** Plug & Phone */
export interface Phone {
    /** Brand name */
    brand: string;
    /** The phone description */
    description: string;
    /** Mac Address */
    macAddress: string;
    /** Maximum simultaneous calls managed by the phone */
    maxSimultaneousCalls: number;
    /** Maximum number of lines managed by a phone */
    maxline: number;
    /** The ip restriction of your MGCP phone */
    mgcpIpRestriction?: Ip;
    /** Current phone properties */
    phoneConfiguration: PhoneConfigurationProperty[];
    /** Phone protocol */
    protocol: ProtocolEnum;
    /** The phone user password */
    userPassword?: string;
}
//# sourceMappingURL=Phone.d.ts.map