Notifies that the customer's message has been delivered to the contact center

interface MessageDelivered {
    body: MessageBody;
    dialogId: string;
    engagementId: string;
    eventDate: Date;
    lastUpdatedAt: Date;
    messageId: string;
    messageIndex?: number;
    parentMessageId: string;
    receivedAt: Date;
    senderParticipant: Participant;
}

Hierarchy (view full)

Properties

Body of the message

dialogId: string

The unique 36 character internal id that represents the dialog.

engagementId: string

The unique 36 character internal id that represents the engagement.

eventDate: Date

The date-time when the event was generated by the Contact Center

lastUpdatedAt: Date

The date-time when the message was updated by the Contact Center

messageId: string

The unique 36 character internal id for identifying this specific message.

messageIndex?: number

The index of the message within the context of the dialog

parentMessageId: string

The unique 36 character messageId of the older message, for which this message is a reply.

receivedAt: Date

The date-time when the message was received by the Contact Center

senderParticipant: Participant

The participant who sent the message