connection = $connection; } /** * @return string */ public function getConnection() { return $this->connection; } /** * @param string */ public function setEndpoint($endpoint) { $this->endpoint = $endpoint; } /** * @return string */ public function getEndpoint() { return $this->endpoint; } /** * @param string */ public function setMaxBatchingRows($maxBatchingRows) { $this->maxBatchingRows = $maxBatchingRows; } /** * @return string */ public function getMaxBatchingRows() { return $this->maxBatchingRows; } /** * @param string[] */ public function setUserDefinedContext($userDefinedContext) { $this->userDefinedContext = $userDefinedContext; } /** * @return string[] */ public function getUserDefinedContext() { return $this->userDefinedContext; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(RemoteFunctionOptions::class, 'Google_Service_Bigquery_RemoteFunctionOptions');