Module Values.BeaconingSource

Beaconing parameters for configuring the wireless gateways.

Sourcetype nonrec t = {
  1. dataRate : BeaconingDataRate.t option;
    (*

    The data rate for gateways that are sending the beacons.

    *)
  2. frequencies : BeaconingFrequencies.t option;
    (*

    The frequency list for the gateways to send the beacons.

    *)
}
Sourceval make : ?dataRate:??? -> ?frequencies:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of BeaconingDataRate.t | `List of [> `Integer of BeaconingFrequency.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