Table of Contents

Class NetworkCameraWirelessProfileSsid

Namespace
Meraki.Api.Data
Assembly
Meraki.Api.dll

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

string

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

string

Name

The name of the SSID.

[ApiAccess(ApiAccess.ReadWrite)]
[DataMember(Name = "name")]
public string Name { get; set; }

Property Value

string

Psk

The pre-shared key of the SSID.

[ApiAccess(ApiAccess.ReadWrite)]
[DataMember(Name = "psk")]
public string Psk { get; set; }

Property Value

string