Package version:

Interface PeekedMessageItem

The object returned in the QueueMessageList array when calling Peek Messages on a Queue

interface PeekedMessageItem {
    dequeueCount: number;
    expiresOn: Date;
    insertedOn: Date;
    messageId: string;
    messageText: string;
}

Properties

dequeueCount: number

The number of times the message has been dequeued.

expiresOn: Date

The time that the Message will expire and be automatically deleted.

insertedOn: Date

The time the Message was inserted into the Queue.

messageId: string

The Id of the Message.

messageText: string

The content of the Message.