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

    Interface SearchMessagesInput

    Properties required to search for all messages in unencrypted channels/groups.

    SearchMessagesInput

    interface SearchMessagesInput {
        handleId: HandleId;
        limit?: number;
        nextToken?: string;
        searchText: string;
    }

    Hierarchy (View Summary)

    Index

    Properties

    handleId: HandleId

    Identifier of the handle owned by this client.

    limit?: number

    Number of items to return. Will be defaulted if omitted.

    nextToken?: string

    A token generated by a previous call.

    searchText: string

    The text to search and match messages with. Search keywords are matched as case-insensitive and whole-words only. Multiple search terms are supported in any order.