maxAttempts = $maxAttempts; } /** * @return int */ public function getMaxAttempts() { return $this->maxAttempts; } /** * @param string */ public function setMaxRetryDelay($maxRetryDelay) { $this->maxRetryDelay = $maxRetryDelay; } /** * @return string */ public function getMaxRetryDelay() { return $this->maxRetryDelay; } /** * @param string */ public function setMinRetryDelay($minRetryDelay) { $this->minRetryDelay = $minRetryDelay; } /** * @return string */ public function getMinRetryDelay() { return $this->minRetryDelay; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(GoogleCloudEventarcV1PipelineRetryPolicy::class, 'Google_Service_Eventarc_GoogleCloudEventarcV1PipelineRetryPolicy');