Module Values.DeleteQueuedMessagesRequestSource

Remove queued messages from the downlink queue.

Sourcetype nonrec t = {
  1. id : WirelessDeviceId.t;
    (*

    The ID of a given wireless device for which downlink messages will be deleted.

    *)
  2. messageId : MessageId.t;
    (*

    If message ID is "*", it cleares the entire downlink queue for a given device, specified by the wireless device ID. Otherwise, the downlink message with the specified message ID will be deleted.

    *)
  3. wirelessDeviceType : WirelessDeviceType.t option;
    (*

    The wireless device type, which can be either Sidewalk or LoRaWAN.

    *)
}
Sourceval context_ : string
Sourceval make : ?wirelessDeviceType:??? -> id:WirelessDeviceId.t -> messageId:MessageId.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of WirelessDeviceId.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