Interface OptionsResponse

Response to a Query for facet options

interface OptionsResponse {
    id: string;
    options: {
        id: string;
        score: number;
        title: string;
        value: string;
    }[];
    selected: {
        id: string;
        score: number;
        title: string;
        value: string;
    }[];
    title: string;
}

Properties

id: string

Name of the facet options endpoint

options: {
    id: string;
    score: number;
    title: string;
    value: string;
}[]
selected: {
    id: string;
    score: number;
    title: string;
    value: string;
}[]
title: string