/**@class android.net.WifiKey
 implements android.os.Parcelable

@extends java.lang.Object

 Information identifying a Wi-Fi network.
 @see NetworkKey

 @hide
*/
var WifiKey = {

/** The service set identifier (SSID) of an 802.11 network. If the SSID can be decoded as
 UTF-8, it will be surrounded by double quotation marks. Otherwise, it will be a string of
 hex digits starting with 0x.
*/
ssid : "null",
/** The basic service set identifier (BSSID) of an access point for this network. This will
 be in the form of a six-byte MAC address: {@code XX:XX:XX:XX:XX:XX}, where each X is a
 hexadecimal digit.
*/
bssid : "null",
/***/
CREATOR : "null",
/**
*/
describeContents : function(  ) {},

/**
*/
writeToParcel : function(  ) {},

/**
*/
equals : function(  ) {},

/**
*/
hashCode : function(  ) {},

/**
*/
toString : function(  ) {},


};