Avaya Infinity Omni SDK
    Preparing search index...

    Message that belongs to an conversation that is sent by any of the participants.

    type Message = {
        attachments?: Attachment[];
        body: MessageBody;
        canned?: boolean;
        conversationId: string;
        lastUpdatedAt: Date;
        messageId: string;
        parentMessageId?: string;
        receivedAt: Date;
        senderParticipant: Participant;
    }
    Index

    Properties

    attachments?: Attachment[]

    Attachments contained in the message.

    Body of the message.

    canned?: boolean

    Indicates whether this message is a canned message.

    conversationId: string

    The identifier for the conversation that this message belongs to.

    lastUpdatedAt: Date

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

    messageId: string

    The identifier of this specific message.

    parentMessageId?: string

    The identifier of the message that is the parent of this message.

    receivedAt: Date

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

    senderParticipant: Participant

    The participant who sent the message.