Module Values.LoRaWANPublicGatewayMetadataSource

LoRaWAN public gateway metadata.

Sourcetype nonrec t = {
  1. providerNetId : ProviderNetId.t option;
    (*

    The ID of the LoRaWAN public network provider.

    *)
  2. id : Id.t option;
    (*

    The ID of the gateways that are operated by the network provider.

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

    The RSSI (received signal strength indicator) value.

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

    The SNR (signal to noise ratio) value.

    *)
  5. rfRegion : RfRegion.t option;
  6. dlAllowed : DlAllowed.t option;
    (*

    Boolean that indicates whether downlink is allowed using the network.

    *)
}
Sourceval make : ?providerNetId:??? -> ?id:??? -> ?rssi:??? -> ?snr:??? -> ?rfRegion:??? -> ?dlAllowed:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of DlAllowed.t | `Double of Double.t | `String of ProviderNetId.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