Skip to main content

SearchResult

type SearchResult = {
channelColor?: number | null;
channelId?: string | null;
channelName?: string | null;
closed?: boolean | null;
commentId?: string | null;
conversationId?: string | null;
id: string;
snippet: string;
snippetCreatorId: number;
snippetLastUpdated: Date;
threadId?: string | null;
title?: string | null;
type: "thread" | "message" | "comment" | "conversation";
};

Type Declaration

NameType
channelColor?number | null
channelId?string | null
channelName?string | null
closed?boolean | null
commentId?string | null
conversationId?string | null
idstring
snippetstring
snippetCreatorIdnumber
snippetLastUpdatedDate
threadId?string | null
title?string | null
type"thread" | "message" | "comment" | "conversation"