@@ -71,6 +71,7 @@ class MainInjectionQueryParameters extends AbstractModel implements ModelInterfa
7171 'facets ' => 'string[] ' ,
7272 'hitsPerPage ' => 'int ' ,
7373 'maxValuesPerFacet ' => 'int ' ,
74+ 'renderingContent ' => '\Algolia\AlgoliaSearch\Model\Composition\RenderingContent ' ,
7475 'sortFacetValuesBy ' => 'string ' ,
7576 'sumOrFiltersScores ' => 'bool ' ,
7677 ];
@@ -132,6 +133,7 @@ class MainInjectionQueryParameters extends AbstractModel implements ModelInterfa
132133 'facets ' => null ,
133134 'hitsPerPage ' => null ,
134135 'maxValuesPerFacet ' => null ,
136+ 'renderingContent ' => null ,
135137 'sortFacetValuesBy ' => null ,
136138 'sumOrFiltersScores ' => null ,
137139 ];
@@ -194,6 +196,7 @@ class MainInjectionQueryParameters extends AbstractModel implements ModelInterfa
194196 'facets ' => 'facets ' ,
195197 'hitsPerPage ' => 'hitsPerPage ' ,
196198 'maxValuesPerFacet ' => 'maxValuesPerFacet ' ,
199+ 'renderingContent ' => 'renderingContent ' ,
197200 'sortFacetValuesBy ' => 'sortFacetValuesBy ' ,
198201 'sumOrFiltersScores ' => 'sumOrFiltersScores ' ,
199202 ];
@@ -255,6 +258,7 @@ class MainInjectionQueryParameters extends AbstractModel implements ModelInterfa
255258 'facets ' => 'setFacets ' ,
256259 'hitsPerPage ' => 'setHitsPerPage ' ,
257260 'maxValuesPerFacet ' => 'setMaxValuesPerFacet ' ,
261+ 'renderingContent ' => 'setRenderingContent ' ,
258262 'sortFacetValuesBy ' => 'setSortFacetValuesBy ' ,
259263 'sumOrFiltersScores ' => 'setSumOrFiltersScores ' ,
260264 ];
@@ -316,6 +320,7 @@ class MainInjectionQueryParameters extends AbstractModel implements ModelInterfa
316320 'facets ' => 'getFacets ' ,
317321 'hitsPerPage ' => 'getHitsPerPage ' ,
318322 'maxValuesPerFacet ' => 'getMaxValuesPerFacet ' ,
323+ 'renderingContent ' => 'getRenderingContent ' ,
319324 'sortFacetValuesBy ' => 'getSortFacetValuesBy ' ,
320325 'sumOrFiltersScores ' => 'getSumOrFiltersScores ' ,
321326 ];
@@ -487,6 +492,9 @@ public function __construct(?array $data = null)
487492 if (isset ($ data ['maxValuesPerFacet ' ])) {
488493 $ this ->container ['maxValuesPerFacet ' ] = $ data ['maxValuesPerFacet ' ];
489494 }
495+ if (isset ($ data ['renderingContent ' ])) {
496+ $ this ->container ['renderingContent ' ] = $ data ['renderingContent ' ];
497+ }
490498 if (isset ($ data ['sortFacetValuesBy ' ])) {
491499 $ this ->container ['sortFacetValuesBy ' ] = $ data ['sortFacetValuesBy ' ];
492500 }
@@ -1791,6 +1799,30 @@ public function setMaxValuesPerFacet($maxValuesPerFacet)
17911799 return $ this ;
17921800 }
17931801
1802+ /**
1803+ * Gets renderingContent.
1804+ *
1805+ * @return null|RenderingContent
1806+ */
1807+ public function getRenderingContent ()
1808+ {
1809+ return $ this ->container ['renderingContent ' ] ?? null ;
1810+ }
1811+
1812+ /**
1813+ * Sets renderingContent.
1814+ *
1815+ * @param null|RenderingContent $renderingContent renderingContent
1816+ *
1817+ * @return self
1818+ */
1819+ public function setRenderingContent ($ renderingContent )
1820+ {
1821+ $ this ->container ['renderingContent ' ] = $ renderingContent ;
1822+
1823+ return $ this ;
1824+ }
1825+
17941826 /**
17951827 * Gets sortFacetValuesBy.
17961828 *
0 commit comments