Skip to content

Commit 5c2c2d7

Browse files
algolia-botkai687
andcommitted
fix(specs): add type: object to 3 schemas (generated)
algolia/api-clients-automation#4392 Co-authored-by: algolia-bot <[email protected]> Co-authored-by: Kai Welke <[email protected]>
1 parent 202fb78 commit 5c2c2d7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

algoliasearch/Models/Recommend/TrendingFacetsQuery.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ public TrendingFacetsQuery() { }
3434
/// <param name="threshold">Minimum score a recommendation must have to be included in the response. (required).</param>
3535
/// <param name="facetName">Facet attribute for which to retrieve trending facet values. (required).</param>
3636
/// <param name="model">model (required).</param>
37-
public TrendingFacetsQuery(string indexName, double threshold, object facetName, TrendingFacetsModel? model)
37+
public TrendingFacetsQuery(string indexName, double threshold, string facetName, TrendingFacetsModel? model)
3838
{
3939
IndexName = indexName ?? throw new ArgumentNullException(nameof(indexName));
4040
Threshold = threshold;
@@ -74,7 +74,7 @@ public TrendingFacetsQuery(string indexName, double threshold, object facetName,
7474
/// </summary>
7575
/// <value>Facet attribute for which to retrieve trending facet values.</value>
7676
[JsonPropertyName("facetName")]
77-
public object FacetName { get; set; }
77+
public string FacetName { get; set; }
7878

7979
/// <summary>
8080
/// Gets or Sets FallbackParameters

0 commit comments

Comments
 (0)