maxRows = $maxRows; } /** * @return string */ public function getMaxRows() { return $this->maxRows; } /** * @param string */ public function setQuery($query) { $this->query = $query; } /** * @return string */ public function getQuery() { return $this->query; } /** * @param QueryParameter[] */ public function setQueryParameters($queryParameters) { $this->queryParameters = $queryParameters; } /** * @return QueryParameter[] */ public function getQueryParameters() { return $this->queryParameters; } /** * @param string */ public function setTimeout($timeout) { $this->timeout = $timeout; } /** * @return string */ public function getTimeout() { return $this->timeout; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(Query::class, 'Google_Service_Connectors_Query');