Interface SearchEventMetadata

interface SearchEventMetadata {
    hasResults: boolean;
    isAutoComplete: boolean;
    isAutoCorrect: boolean;
    isKeyword: boolean;
    isOrganic: boolean;
    isRefined: boolean;
    isSorted: boolean;
    query: string;
    refinedQuery?: string;
    resultId: string;
}

Properties

hasResults: boolean
isAutoComplete: boolean
isAutoCorrect: boolean
isKeyword: boolean
isOrganic: boolean
isRefined: boolean
isSorted: boolean
query: string
refinedQuery?: string
resultId: string