baseUrl = $baseUrl; } /** * @return string */ public function getBaseUrl() { return $this->baseUrl; } /** * @param bool */ public function setReportingEnabled($reportingEnabled) { $this->reportingEnabled = $reportingEnabled; } /** * @return bool */ public function getReportingEnabled() { return $this->reportingEnabled; } /** * @param string */ public function setServicePath($servicePath) { $this->servicePath = $servicePath; } /** * @return string */ public function getServicePath() { return $this->servicePath; } /** * @param string */ public function setShuffleServicePath($shuffleServicePath) { $this->shuffleServicePath = $shuffleServicePath; } /** * @return string */ public function getShuffleServicePath() { return $this->shuffleServicePath; } /** * @param string */ public function setTempStoragePrefix($tempStoragePrefix) { $this->tempStoragePrefix = $tempStoragePrefix; } /** * @return string */ public function getTempStoragePrefix() { return $this->tempStoragePrefix; } /** * @param string */ public function setWorkerId($workerId) { $this->workerId = $workerId; } /** * @return string */ public function getWorkerId() { return $this->workerId; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(WorkerSettings::class, 'Google_Service_Dataflow_WorkerSettings');