contextAttributes = $contextAttributes; } /** * @return ContextAttribute[] */ public function getContextAttributes() { return $this->contextAttributes; } /** * @param DataSourceRestriction[] */ public function setDataSourceRestrictions($dataSourceRestrictions) { $this->dataSourceRestrictions = $dataSourceRestrictions; } /** * @return DataSourceRestriction[] */ public function getDataSourceRestrictions() { return $this->dataSourceRestrictions; } /** * @param FacetOptions[] */ public function setFacetOptions($facetOptions) { $this->facetOptions = $facetOptions; } /** * @return FacetOptions[] */ public function getFacetOptions() { return $this->facetOptions; } /** * @param int */ public function setPageSize($pageSize) { $this->pageSize = $pageSize; } /** * @return int */ public function getPageSize() { return $this->pageSize; } /** * @param string */ public function setQuery($query) { $this->query = $query; } /** * @return string */ public function getQuery() { return $this->query; } /** * @param QueryInterpretationOptions */ public function setQueryInterpretationOptions(QueryInterpretationOptions $queryInterpretationOptions) { $this->queryInterpretationOptions = $queryInterpretationOptions; } /** * @return QueryInterpretationOptions */ public function getQueryInterpretationOptions() { return $this->queryInterpretationOptions; } /** * @param RequestOptions */ public function setRequestOptions(RequestOptions $requestOptions) { $this->requestOptions = $requestOptions; } /** * @return RequestOptions */ public function getRequestOptions() { return $this->requestOptions; } /** * @param SortOptions */ public function setSortOptions(SortOptions $sortOptions) { $this->sortOptions = $sortOptions; } /** * @return SortOptions */ public function getSortOptions() { return $this->sortOptions; } /** * @param int */ public function setStart($start) { $this->start = $start; } /** * @return int */ public function getStart() { return $this->start; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(SearchRequest::class, 'Google_Service_CloudSearch_SearchRequest');