From 5c2c2d7b3300256eafef10a2ec2ebdaad849da4b Mon Sep 17 00:00:00 2001 From: algolia-bot Date: Thu, 23 Jan 2025 14:12:24 +0000 Subject: [PATCH] fix(specs): add type: object to 3 schemas (generated) https://github.com/algolia/api-clients-automation/pull/4392 Co-authored-by: algolia-bot Co-authored-by: Kai Welke --- algoliasearch/Models/Recommend/TrendingFacetsQuery.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/algoliasearch/Models/Recommend/TrendingFacetsQuery.cs b/algoliasearch/Models/Recommend/TrendingFacetsQuery.cs index af230d69c..56ffb4204 100644 --- a/algoliasearch/Models/Recommend/TrendingFacetsQuery.cs +++ b/algoliasearch/Models/Recommend/TrendingFacetsQuery.cs @@ -34,7 +34,7 @@ public TrendingFacetsQuery() { } /// Minimum score a recommendation must have to be included in the response. (required). /// Facet attribute for which to retrieve trending facet values. (required). /// model (required). - public TrendingFacetsQuery(string indexName, double threshold, object facetName, TrendingFacetsModel? model) + public TrendingFacetsQuery(string indexName, double threshold, string facetName, TrendingFacetsModel? model) { IndexName = indexName ?? throw new ArgumentNullException(nameof(indexName)); Threshold = threshold; @@ -74,7 +74,7 @@ public TrendingFacetsQuery(string indexName, double threshold, object facetName, /// /// Facet attribute for which to retrieve trending facet values. [JsonPropertyName("facetName")] - public object FacetName { get; set; } + public string FacetName { get; set; } /// /// Gets or Sets FallbackParameters