Type Alias NLMetricRecord

type NLMetricRecord = {
    appId: string;
    appName?: string;
    apps?: AppMetadata[];
    channelId?: string;
    chartType?: string;
    createdAt: string;
    createdBy?: string;
    feedback?: RecFeedback[];
    id: string;
    isContextualQuery?: boolean;
    lang?: string;
    nluInfo?: PartialNluInfo[];
    queryError?: boolean;
    queryOrigin?: "askQuestion" | "iaAnalysis" | "iaAssetsPanel";
    queryText?: string;
    queryType?:
        | "appList"
        | "appSuggested"
        | "dimensionList"
        | "exploreThisFurther"
        | "followup"
        | "greetings"
        | "measureList"
        | "query"
        | "sampleQuestion";
    questionId: string;
    recommendations?: NLMetricRecommendation[];
    responses?: NLResponses;
    stopWords?: string[];
    tenantId?: string;
    unmatchedEntities?: string[];
    updatedAt: string;
    version: string;
}
Index

Properties

appId: string

Qlik sense app id that is being used to answer the question

appName?: string
apps?: AppMetadata[]
channelId?: string
chartType?: string
createdAt: string
createdBy?: string
feedback?: RecFeedback[]
id: string
isContextualQuery?: boolean
lang?: string
nluInfo?: PartialNluInfo[]
queryError?: boolean
queryOrigin?: "askQuestion" | "iaAnalysis" | "iaAssetsPanel"
queryText?: string
queryType?:
    | "appList"
    | "appSuggested"
    | "dimensionList"
    | "exploreThisFurther"
    | "followup"
    | "greetings"
    | "measureList"
    | "query"
    | "sampleQuestion"
questionId: string
recommendations?: NLMetricRecommendation[]
responses?: NLResponses
stopWords?: string[]
tenantId?: string
unmatchedEntities?: string[]
updatedAt: string
version: string