@@ -33,6 +33,10 @@ import kotlinx.serialization.json.*
3333 * in the results You can only set `relevancyStrictness` on
3434 * [virtual replica indices](https://www.algolia.com/doc/guides/managing-results/refine-results/sorting/in-depth/replicas/#what-are-virtual-replicas).
3535 * Use this setting to strike a balance between the relevance and number of returned results.
36+ * @param facets Facets for which to retrieve facet values that match the search criteria and the
37+ * number of matching facet values To retrieve all facets, use the wildcard character `*`. For
38+ * more information, see
39+ * [facets](https://www.algolia.com/doc/guides/managing-results/refine-results/faceting/#contextual-facet-values-and-counts).
3640 * @param facetFilters
3741 * @param optionalFilters
3842 * @param numericFilters
@@ -128,6 +132,14 @@ public data class Params(
128132 * Use this setting to strike a balance between the relevance and number of returned results.
129133 */
130134 @SerialName(value = " relevancyStrictness" ) val relevancyStrictness : Int? = null ,
135+
136+ /* *
137+ * Facets for which to retrieve facet values that match the search criteria and the number of
138+ * matching facet values To retrieve all facets, use the wildcard character `*`. For more
139+ * information, see
140+ * [facets](https://www.algolia.com/doc/guides/managing-results/refine-results/faceting/#contextual-facet-values-and-counts).
141+ */
142+ @SerialName(value = " facets" ) val facets : List <String >? = null ,
131143 @SerialName(value = " facetFilters" ) val facetFilters : FacetFilters ? = null ,
132144 @SerialName(value = " optionalFilters" ) val optionalFilters : OptionalFilters ? = null ,
133145 @SerialName(value = " numericFilters" ) val numericFilters : NumericFilters ? = null ,
0 commit comments