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 3c37ce1 commit 3c01f97
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public class TrendingFacetsQuery implements RecommendationsRequest {
private RecommendSearchParams queryParameters;

@JsonProperty("facetName")
private Object facetName;
private String facetName;

@JsonProperty("model")
private TrendingFacetsModel model;
Expand Down Expand Up @@ -84,14 +84,14 @@ public RecommendSearchParams getQueryParameters() {
return queryParameters;
}

public TrendingFacetsQuery setFacetName(Object facetName) {
public TrendingFacetsQuery setFacetName(String facetName) {
this.facetName = facetName;
return this;
}

/** Facet attribute for which to retrieve trending facet values. */
@javax.annotation.Nullable
public Object getFacetName() {
@javax.annotation.Nonnull
public String getFacetName() {
return facetName;
}

Expand Down

0 comments on commit 3c01f97

Please sign in to comment.