@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
16 lines • 525 B
TypeScript
import { Ip } from '../Ip';
import { AddressingTypeEnum } from './xdslModemConfig/AddressingTypeEnum';
/** LAN Configuration of the Modem */
export interface LAN {
/** IP address (e.g., 192.0.2.0) */
IPAddress: Ip;
/** How the modem gets its LAN IP Address */
addressingType: AddressingTypeEnum;
/** Name of the LAN */
lanName: string;
/** IP address (e.g., 192.0.2.0) */
subnetMask: Ip;
/** ID of the ongoing todo (NULL if none) */
taskId?: number;
}
//# sourceMappingURL=LAN.d.ts.map