Skip to main content

ConversationSearchResult

type ConversationSearchResult = {
channelColor?: number | null;
channelId?: string | null;
channelName?: string | null;
closed?: boolean | null;
conversationId: string;
id: string;
messageId?: string | null;
snippet: string;
snippetCreatorId: number;
snippetLastUpdated: Date;
title?: string | null;
type: "conversation";
};

Type Declaration

NameTypeDescription
channelColor?number | null-
channelId?string | null-
channelName?string | null-
closed?boolean | null-
conversationIdstringThe owning conversation id.
idstringOpaque search-result key in the form thread_<threadId> or conversation_<conversationId>. Unique per result; not a Comms object id — use threadId, conversationId, commentId, or messageId to reference objects.
messageId?string | nullThe matched message id.
snippetstring-
snippetCreatorIdnumber-
snippetLastUpdatedDate-
title?string | null-
type"conversation"-