Package ai.nextbillion.maps.model
Class WifiAccessPoint
java.lang.Object
ai.nextbillion.maps.model.WifiAccessPoint
- All Implemented Interfaces:
java.io.Serializable
public class WifiAccessPoint
extends java.lang.Object
implements java.io.Serializable
A WiFi access point.
The request body's wifiAccessPoints array must contain two or more WiFi access point
objects. macAddress is required; all other fields are optional.
Please see WiFi Access Point Objects for more detail.
- See Also:
- Serialized Form
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classWifiAccessPoint.WifiAccessPointBuilder -
Field Summary
Fields Modifier and Type Field Description java.lang.IntegerageThe number of milliseconds since this access point was detected.java.lang.IntegerchannelThe channel over which the client is communicating with the access point.java.lang.StringmacAddressThe MAC address of the WiFi node (required).java.lang.IntegersignalStrengthThe current signal strength measured in dBm.java.lang.IntegersignalToNoiseRatioThe current signal to noise ratio measured in dB. -
Constructor Summary
Constructors Constructor Description WifiAccessPoint() -
Method Summary
Modifier and Type Method Description java.lang.StringtoString()
-
Field Details
-
macAddress
public java.lang.String macAddressThe MAC address of the WiFi node (required). Separators must be:(colon) and hex digits must use uppercase. -
signalStrength
public java.lang.Integer signalStrengthThe current signal strength measured in dBm. -
age
public java.lang.Integer ageThe number of milliseconds since this access point was detected. -
channel
public java.lang.Integer channelThe channel over which the client is communicating with the access point. -
signalToNoiseRatio
public java.lang.Integer signalToNoiseRatioThe current signal to noise ratio measured in dB.
-
-
Constructor Details
-
WifiAccessPoint
public WifiAccessPoint()
-
-
Method Details
-
toString
public java.lang.String toString()- Overrides:
toStringin classjava.lang.Object
-