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 class  WifiAccessPoint.WifiAccessPointBuilder  
  • Field Summary

    Fields 
    Modifier and Type Field Description
    java.lang.Integer age
    The number of milliseconds since this access point was detected.
    java.lang.Integer channel
    The channel over which the client is communicating with the access point.
    java.lang.String macAddress
    The MAC address of the WiFi node (required).
    java.lang.Integer signalStrength
    The current signal strength measured in dBm.
    java.lang.Integer signalToNoiseRatio
    The current signal to noise ratio measured in dB.
  • Constructor Summary

    Constructors 
    Constructor Description
    WifiAccessPoint()  
  • Method Summary

    Modifier and Type Method Description
    java.lang.String toString()  

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
  • Field Details

    • macAddress

      public java.lang.String macAddress
      The MAC address of the WiFi node (required). Separators must be : (colon) and hex digits must use uppercase.
    • signalStrength

      public java.lang.Integer signalStrength
      The current signal strength measured in dBm.
    • age

      public java.lang.Integer age
      The number of milliseconds since this access point was detected.
    • channel

      public java.lang.Integer channel
      The channel over which the client is communicating with the access point.
    • signalToNoiseRatio

      public java.lang.Integer signalToNoiseRatio
      The current signal to noise ratio measured in dB.
  • Constructor Details

  • Method Details

    • toString

      public java.lang.String toString()
      Overrides:
      toString in class java.lang.Object