Module Values.LoRaWANDeviceMetadataSource

LoRaWAN device metatdata.

Sourcetype nonrec t = {
  1. devEui : DevEui.t option;
    (*

    The DevEUI value.

    *)
  2. fPort : Integer.t option;
    (*

    The FPort value.

    *)
  3. dataRate : Integer.t option;
    (*

    The DataRate value.

    *)
  4. frequency : Integer.t option;
    (*

    The device's channel frequency in Hz.

    *)
  5. timestamp : ISODateTimeString.t option;
    (*

    The date and time of the metadata.

    *)
  6. gateways : LoRaWANGatewayMetadataList.t option;
    (*

    Information about the gateways accessed by the device.

    *)
  7. publicGateways : LoRaWANPublicGatewayMetadataList.t option;
    (*

    Information about the LoRaWAN public network accessed by the device.

    *)
}
Sourceval make : ?devEui:??? -> ?fPort:??? -> ?dataRate:??? -> ?frequency:??? -> ?timestamp:??? -> ?gateways:??? -> ?publicGateways:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Integer.t | `List of [> `Structure of (string * [> `Boolean of DlAllowed.t | `Double of Double.t | `String of GatewayEui.t ]) list ] list | `String of DevEui.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