authority = $authority; } /** * @return string */ public function getAuthority() { return $this->authority; } /** * @param string */ public function setEndpoint($endpoint) { $this->endpoint = $endpoint; } /** * @return string */ public function getEndpoint() { return $this->endpoint; } /** * @param string */ public function setPayloadName($payloadName) { $this->payloadName = $payloadName; } /** * @return string */ public function getPayloadName() { return $this->payloadName; } /** * @param Duration */ public function setResendInterval(Duration $resendInterval) { $this->resendInterval = $resendInterval; } /** * @return Duration */ public function getResendInterval() { return $this->resendInterval; } /** * @param string */ public function setRetryDurationSec($retryDurationSec) { $this->retryDurationSec = $retryDurationSec; } /** * @return string */ public function getRetryDurationSec() { return $this->retryDurationSec; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(NotificationEndpointGrpcSettings::class, 'Google_Service_Compute_NotificationEndpointGrpcSettings');