Module Values.SidewalkDeviceMetadataSource

MetaData for Sidewalk device.

Sourcetype nonrec t = {
  1. rssi : Integer.t option;
    (*

    The RSSI value.

    *)
  2. batteryLevel : BatteryLevel.t option;
    (*

    Sidewalk device battery level.

    *)
  3. event : Event.t option;
    (*

    Sidewalk device status notification.

    *)
  4. deviceState : DeviceState.t option;
    (*

    Device state defines the device status of sidewalk device.

    *)
}
Sourceval make : ?rssi:??? -> ?batteryLevel:??? -> ?event:??? -> ?deviceState:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of Integer.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