attempts = $attempts; } /** * @return string */ public function getAttempts() { return $this->attempts; } /** * @param string */ public function setBackoffMode($backoffMode) { $this->backoffMode = $backoffMode; } /** * @return string */ public function getBackoffMode() { return $this->backoffMode; } /** * @param string */ public function setWait($wait) { $this->wait = $wait; } /** * @return string */ public function getWait() { return $this->wait; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(Retry::class, 'Google_Service_CloudDeploy_Retry');