WifiData

data class WifiData(val ssid: String, val password: String?, val macAddress: String?, val authType: AuthenticationMode, val encryptionMode: EncryptionMode) : Parcelable

WifiData is a data class that holds the Wi-Fi data.

Parameters

ssid

The human-readable of the Wi-Fi network.

password

The password of the Wi-Fi network, or null if the network is open.

macAddress

Optional BSSID of the Wi-Fi network, in case a network is accessible from multiple access points.

authType

The authentication type of the Wi-Fi network.

encryptionMode

The encryption mode of the Wi-Fi network.

Constructors

Link copied to clipboard
constructor(ssid: String, password: String?, macAddress: String?, authType: AuthenticationMode, encryptionMode: EncryptionMode)

Properties

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard

Functions

Link copied to clipboard
abstract fun describeContents(): Int
Link copied to clipboard
abstract fun writeToParcel(p0: Parcel, p1: Int)