@sudoplatform/sudo-secure-communications
    Preparing search index...

    Interface SearchMessagesItem

    Representation of the message returned by performing server side unencrypted event search

    SearchMessagesItem

    interface SearchMessagesItem {
        body: string;
        filename?: string;
        messageId: string;
        mimeType?: string;
        recipient: Recipient;
        repliedToMessageId?: string;
        senderHandleId: HandleId;
        timestamp: number;
    }
    Index

    Properties

    body: string

    The body text of the message.

    filename?: string

    The file name associated with a message attachment.

    messageId: string

    Unique identifier of the message.

    mimeType?: string

    The MIME type associated with a message attachment.

    recipient: Recipient

    The recipient chat that the message is located.

    repliedToMessageId?: string

    The message identifier of the message this message is replying to (if this message is a reply).

    senderHandleId: HandleId

    The handle identififer of the message sender.

    timestamp: number

    The time the message was sent or received.