Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

DownlinkQueueMessage

import type { DownlinkQueueMessage } from "https://aws-api.deno.dev/v0.3/services/iotwireless.ts?docs=full";

The message in downlink queue.

interface DownlinkQueueMessage {
LoRaWAN?: LoRaWANSendDataToDevice | null;
MessageId?: string | null;
ReceivedAt?: string | null;
TransmitMode?: number | null;
}

§Properties

§
MessageId?: string | null
[src]

The messageId allocated by IoT Wireless for tracing purpose

§
ReceivedAt?: string | null
[src]

The timestamp that Iot Wireless received the message.

§
TransmitMode?: number | null
[src]

The transmit mode to use to send data to the wireless device. Can be: 0 for UM (unacknowledge mode) or 1 for AM (acknowledge mode).