rateName = $rateName; } /** * @return string */ public function getRateName() { return $this->rateName; } /** * The rate scope of the quota limit. * * Accepted values: UNSPECIFIED, UNKNOWN, ACCOUNT, DEVELOPER * * @param self::RATE_SCOPE_* $rateScope */ public function setRateScope($rateScope) { $this->rateScope = $rateScope; } /** * @return self::RATE_SCOPE_* */ public function getRateScope() { return $this->rateScope; } /** * Backoff period that customers should wait before sending next request. * * @param string $retryDelay */ public function setRetryDelay($retryDelay) { $this->retryDelay = $retryDelay; } /** * @return string */ public function getRetryDelay() { return $this->retryDelay; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(GoogleAdsSearchads360V0ErrorsQuotaErrorDetails::class, 'Google_Service_SA360_GoogleAdsSearchads360V0ErrorsQuotaErrorDetails');