bucketCounts = $bucketCounts; } /** * @return string[] */ public function getBucketCounts() { return $this->bucketCounts; } /** * @param GoogleApiDistributionBucketOptions */ public function setBucketOptions(GoogleApiDistributionBucketOptions $bucketOptions) { $this->bucketOptions = $bucketOptions; } /** * @return GoogleApiDistributionBucketOptions */ public function getBucketOptions() { return $this->bucketOptions; } /** * @param string */ public function setCount($count) { $this->count = $count; } /** * @return string */ public function getCount() { return $this->count; } /** * @param GoogleApiDistributionExemplar[] */ public function setExemplars($exemplars) { $this->exemplars = $exemplars; } /** * @return GoogleApiDistributionExemplar[] */ public function getExemplars() { return $this->exemplars; } public function setMean($mean) { $this->mean = $mean; } public function getMean() { return $this->mean; } /** * @param GoogleApiDistributionRange */ public function setRange(GoogleApiDistributionRange $range) { $this->range = $range; } /** * @return GoogleApiDistributionRange */ public function getRange() { return $this->range; } public function setSumOfSquaredDeviation($sumOfSquaredDeviation) { $this->sumOfSquaredDeviation = $sumOfSquaredDeviation; } public function getSumOfSquaredDeviation() { return $this->sumOfSquaredDeviation; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(GoogleApiDistribution::class, 'Google_Service_DiscoveryEngine_GoogleApiDistribution');