import { Ipv4 } from '../Ipv4';
/** Describe device information of a Modem */
export interface DeviceModemInfo {
    /** Modem brand */
    brand: string;
    /** IPv4 address (e.g., 192.0.2.0) */
    ip: Ipv4;
    /** Time of last information refresh */
    lastUpdate: string;
    /** Modem mac address */
    macAddress: string;
    /** Modem type of model */
    model: string;
    /** Organizational Unique Identifier */
    oui: string;
    /** Protocol used for connection */
    overEthernet?: string;
    /** login used for ppp protocol */
    pppLogin?: string;
    /** Modem serial key */
    serial: string;
    /** Software Version */
    softVersion: string;
}
//# sourceMappingURL=DeviceModemInfo.d.ts.map