Module Values.LoRaWANUpdateGatewayTaskCreateSource

LoRaWANUpdateGatewayTaskCreate object.

Sourcetype nonrec t = {
  1. updateSignature : UpdateSignature.t option;
    (*

    The signature used to verify the update firmware.

    *)
  2. sigKeyCrc : Crc.t option;
    (*

    The CRC of the signature private key to check.

    *)
  3. currentVersion : LoRaWANGatewayVersion.t option;
    (*

    The version of the gateways that should receive the update.

    *)
  4. updateVersion : LoRaWANGatewayVersion.t option;
    (*

    The firmware version to update the gateway to.

    *)
}
Sourceval make : ?updateSignature:??? -> ?sigKeyCrc:??? -> ?currentVersion:??? -> ?updateVersion:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Long of Crc.t | `String of UpdateSignature.t | `Structure of (string * [> `String of PackageVersion.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