Skip to content

Commit 32301c6

Browse files
feat(specs): add renderingContent query parameter in Composition API main injection (generated)
algolia/api-clients-automation#5549 Co-authored-by: algolia-bot <[email protected]> Co-authored-by: Clara Muller <[email protected]>
1 parent 98630c5 commit 32301c6

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

algoliasearch/src/main/java/com/algolia/model/composition/MainInjectionQueryParameters.java

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -165,6 +165,9 @@ public class MainInjectionQueryParameters {
165165
@JsonProperty("maxValuesPerFacet")
166166
private Integer maxValuesPerFacet;
167167

168+
@JsonProperty("renderingContent")
169+
private RenderingContent renderingContent;
170+
168171
@JsonProperty("sortFacetValuesBy")
169172
private String sortFacetValuesBy;
170173

@@ -1013,6 +1016,17 @@ public Integer getMaxValuesPerFacet() {
10131016
return maxValuesPerFacet;
10141017
}
10151018

1019+
public MainInjectionQueryParameters setRenderingContent(RenderingContent renderingContent) {
1020+
this.renderingContent = renderingContent;
1021+
return this;
1022+
}
1023+
1024+
/** Get renderingContent */
1025+
@javax.annotation.Nullable
1026+
public RenderingContent getRenderingContent() {
1027+
return renderingContent;
1028+
}
1029+
10161030
public MainInjectionQueryParameters setSortFacetValuesBy(String sortFacetValuesBy) {
10171031
this.sortFacetValuesBy = sortFacetValuesBy;
10181032
return this;
@@ -1106,6 +1120,7 @@ public boolean equals(Object o) {
11061120
Objects.equals(this.facets, mainInjectionQueryParameters.facets) &&
11071121
Objects.equals(this.hitsPerPage, mainInjectionQueryParameters.hitsPerPage) &&
11081122
Objects.equals(this.maxValuesPerFacet, mainInjectionQueryParameters.maxValuesPerFacet) &&
1123+
Objects.equals(this.renderingContent, mainInjectionQueryParameters.renderingContent) &&
11091124
Objects.equals(this.sortFacetValuesBy, mainInjectionQueryParameters.sortFacetValuesBy) &&
11101125
Objects.equals(this.sumOrFiltersScores, mainInjectionQueryParameters.sumOrFiltersScores)
11111126
);
@@ -1165,6 +1180,7 @@ public int hashCode() {
11651180
facets,
11661181
hitsPerPage,
11671182
maxValuesPerFacet,
1183+
renderingContent,
11681184
sortFacetValuesBy,
11691185
sumOrFiltersScores
11701186
);
@@ -1228,6 +1244,7 @@ public String toString() {
12281244
sb.append(" facets: ").append(toIndentedString(facets)).append("\n");
12291245
sb.append(" hitsPerPage: ").append(toIndentedString(hitsPerPage)).append("\n");
12301246
sb.append(" maxValuesPerFacet: ").append(toIndentedString(maxValuesPerFacet)).append("\n");
1247+
sb.append(" renderingContent: ").append(toIndentedString(renderingContent)).append("\n");
12311248
sb.append(" sortFacetValuesBy: ").append(toIndentedString(sortFacetValuesBy)).append("\n");
12321249
sb.append(" sumOrFiltersScores: ").append(toIndentedString(sumOrFiltersScores)).append("\n");
12331250
sb.append("}");

0 commit comments

Comments
 (0)