explicitBuckets = $explicitBuckets; } /** * @return Explicit */ public function getExplicitBuckets() { return $this->explicitBuckets; } /** * @param Exponential */ public function setExponentialBuckets(Exponential $exponentialBuckets) { $this->exponentialBuckets = $exponentialBuckets; } /** * @return Exponential */ public function getExponentialBuckets() { return $this->exponentialBuckets; } /** * @param Linear */ public function setLinearBuckets(Linear $linearBuckets) { $this->linearBuckets = $linearBuckets; } /** * @return Linear */ public function getLinearBuckets() { return $this->linearBuckets; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(BucketOptions::class, 'Google_Service_Monitoring_BucketOptions');