Skip to content

Commit

Permalink
fix(specs): add type: object to 3 schemas (generated)
Browse files Browse the repository at this point in the history
algolia/api-clients-automation#4392

Co-authored-by: algolia-bot <[email protected]>
Co-authored-by: Kai Welke <[email protected]>
  • Loading branch information
algolia-bot and kai687 committed Jan 23, 2025
1 parent 202fb78 commit 5c2c2d7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions algoliasearch/Models/Recommend/TrendingFacetsQuery.cs
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public TrendingFacetsQuery() { }
/// <param name="threshold">Minimum score a recommendation must have to be included in the response. (required).</param>
/// <param name="facetName">Facet attribute for which to retrieve trending facet values. (required).</param>
/// <param name="model">model (required).</param>
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;
Expand Down Expand Up @@ -74,7 +74,7 @@ public TrendingFacetsQuery(string indexName, double threshold, object facetName,
/// </summary>
/// <value>Facet attribute for which to retrieve trending facet values.</value>
[JsonPropertyName("facetName")]
public object FacetName { get; set; }
public string FacetName { get; set; }

/// <summary>
/// Gets or Sets FallbackParameters
Expand Down

0 comments on commit 5c2c2d7

Please sign in to comment.