initialPollDelay = $initialPollDelay; } /** * @return string */ public function getInitialPollDelay() { return $this->initialPollDelay; } /** * @param string */ public function setMaxPollDelay($maxPollDelay) { $this->maxPollDelay = $maxPollDelay; } /** * @return string */ public function getMaxPollDelay() { return $this->maxPollDelay; } /** * @param float */ public function setPollDelayMultiplier($pollDelayMultiplier) { $this->pollDelayMultiplier = $pollDelayMultiplier; } /** * @return float */ public function getPollDelayMultiplier() { return $this->pollDelayMultiplier; } /** * @param string */ public function setTotalPollTimeout($totalPollTimeout) { $this->totalPollTimeout = $totalPollTimeout; } /** * @return string */ public function getTotalPollTimeout() { return $this->totalPollTimeout; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(LongRunning::class, 'Google_Service_ServiceUsage_LongRunning');