github.com/dim13/unifi@v0.0.0-20230308161331-9b04946f5e93/wlanconf.go (about)

     1  // Copyright (c) 2014 The unifi Authors. All rights reserved.
     2  // Use of this source code is governed by ISC-style license
     3  // that can be found in the LICENSE file.
     4  
     5  package unifi
     6  
     7  type WlanConf struct {
     8  	Enabled        bool
     9  	HideSsid       bool `json:"hide_ssid"`
    10  	IsGuest        bool `json:"is_guest"`
    11  	Name           string
    12  	RadiusIP1      string `json:"radius_ip_1"`
    13  	RadiusPort1    string `json:"radius_port_1"`
    14  	Security       string
    15  	UsergroupID    string `json:"usergroup_id"`
    16  	Vlan           string
    17  	VlanEnabled    bool   `json:"vlan_enabled"`
    18  	WepIdx         string `json:"wep_idx"`
    19  	WpaEnc         string `json:"wpa_enc"`
    20  	WpaMode        string `json:"wpa_mode"`
    21  	XPassphrase    string `json:"x_passphrase"`
    22  	XRadiusSecret1 string `json:"x_radius_secret_1"`
    23  	XWep           string `json:"x_wep"`
    24  }