Module Values.LoRaWANGatewayMetadataSource

LoRaWAN gateway metatdata.

Sourcetype nonrec t = {
  1. gatewayEui : GatewayEui.t option;
    (*

    The gateway's EUI value.

    *)
  2. snr : Double.t option;
    (*

    The SNR value.

    *)
  3. rssi : Double.t option;
    (*

    The RSSI value.

    *)
}
Sourceval make : ?gatewayEui:??? -> ?snr:??? -> ?rssi:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Double of Double.t | `String of GatewayEui.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t