Module Values.LoRaWANGatewaySource

LoRaWANGateway object.

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

    The gateway's EUI value.

    *)
  2. rfRegion : RfRegion.t option;
    (*

    The frequency band (RFRegion) value.

    *)
  3. joinEuiFilters : JoinEuiFilters.t option;
  4. netIdFilters : NetIdFilters.t option;
  5. subBands : SubBands.t option;
  6. beaconing : Beaconing.t option;
    (*

    Beaconing object information, which consists of the data rate and frequency parameters.

    *)
  7. maxEirp : GatewayMaxEirp.t option;
    (*

    The MaxEIRP value.

    *)
}
Sourceval make : ?gatewayEui:??? -> ?rfRegion:??? -> ?joinEuiFilters:??? -> ?netIdFilters:??? -> ?subBands:??? -> ?beaconing:??? -> ?maxEirp:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Float of GatewayMaxEirp.t | `List of [> `Integer of SubBand.t | `List of [> `String of JoinEui.t ] list | `String of NetId.t ] list | `String of GatewayEui.t | `Structure of (string * [> `Integer of BeaconingDataRate.t | `List of [> `Integer of BeaconingFrequency.t ] list ]) 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