Class NetworkCameraWirelessProfileSsid
The details of the SSID config.
[DataContract]
public class NetworkCameraWirelessProfileSsid
- Inheritance
-
NetworkCameraWirelessProfileSsid
- Inherited Members
Properties
AuthMode
The auth mode of the SSID. It can be set to ('psk', '8021x-radius').
[ApiAccess(ApiAccess.ReadWrite)]
[DataMember(Name = "authMode")]
public string AuthMode { get; set; }
Property Value
EncryptionMode
The encryption mode of the SSID. It can be set to ('wpa', 'wpa-eap'). With 'wpa' mode, the authMode should be 'psk' and with 'wpa-eap' the authMode should be '8021x-radius'
[ApiAccess(ApiAccess.ReadWrite)]
[DataMember(Name = "encryptionMode")]
public string EncryptionMode { get; set; }
Property Value
Name
The name of the SSID.
[ApiAccess(ApiAccess.ReadWrite)]
[DataMember(Name = "name")]
public string Name { get; set; }
Property Value
Psk
The pre-shared key of the SSID.
[ApiAccess(ApiAccess.ReadWrite)]
[DataMember(Name = "psk")]
public string Psk { get; set; }