Module Values.FPortsSource

List of FPort assigned for different LoRaWAN application packages to use

Sourcetype nonrec t = {
  1. fuota : FPort.t option;
  2. multicast : FPort.t option;
  3. clockSync : FPort.t option;
  4. positioning : Positioning.t option;
    (*

    FPort values for the GNSS, stream, and ClockSync functions of the positioning information.

    *)
  5. applications : Applications.t option;
    (*

    Optional LoRaWAN application information, which can be used for geolocation.

    *)
}
Sourceval make : ?fuota:??? -> ?multicast:??? -> ?clockSync:??? -> ?positioning:??? -> ?applications:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of FPort.t | `List of [> `Structure of (string * [> `Enum of string | `Integer of FPort.t | `String of DestinationName.t ]) list ] list | `Structure of (string * [> `Integer of FPort.t ]) list ]) 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