"IsBandwidthThrottle", "maxAllowedRate" => "MaxAllowedRate", ]; /** * @var bool */ public $isBandwidthThrottle; /** * @var float */ public $maxAllowedRate; /** * @param bool */ public function setIsBandwidthThrottle($isBandwidthThrottle) { $this->isBandwidthThrottle = $isBandwidthThrottle; } /** * @return bool */ public function getIsBandwidthThrottle() { return $this->isBandwidthThrottle; } /** * @param float */ public function setMaxAllowedRate($maxAllowedRate) { $this->maxAllowedRate = $maxAllowedRate; } /** * @return float */ public function getMaxAllowedRate() { return $this->maxAllowedRate; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(TrawlerThrottleClientData::class, 'Google_Service_Contentwarehouse_TrawlerThrottleClientData');