@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
31 lines • 1.16 kB
TypeScript
import { ChannelModeEnum } from './xdslModemConfig/ChannelModeEnum';
import { FrequencyEnum } from './xdslModemConfig/FrequencyEnum';
import { SecurityTypeEnum } from './xdslModemConfig/SecurityTypeEnum';
/** WLAN Configuration of the Modem */
export interface WLAN {
/** Service Set Identifier of the WLAN interface */
SSID: string;
/** Hide or show the Wifi */
SSIDAdvertisementEnabled: boolean;
/** Indicate if frequencies 2.4GHz and 5GHz are agregated */
bandSteering: boolean;
/** Choice of a channel (When chosen, channelMode is set to Manual) */
channel: number;
/** How the WiFi channel is selected */
channelMode: ChannelModeEnum;
/** Wifi state */
enabled: boolean;
/** Frequency (2.4GHz | 5GHz) */
frequency: FrequencyEnum;
/** Indicate if it is normal access wifi or guest wifi */
guest: boolean;
/** WiFi security key */
securityKey: string;
/** Type of WLAN security protection */
securityType: SecurityTypeEnum;
/** ID of the ongoing todo (NULL if none) */
taskId?: number;
/** Name of the Wifi */
wifiName: string;
}
//# sourceMappingURL=WLAN.d.ts.map