Interface iFilterSuggestionsSuccessResponse

interface iFilterSuggestionsSuccessResponse {
    attributes: {
        count: number;
        name: string;
        value: string | number | boolean;
    }[];
}

Implemented by

Properties

Properties

attributes: {
    count: number;
    name: string;
    value: string | number | boolean;
}[]