comparisonValue = $comparisonValue; } /** * @return string */ public function getComparisonValue() { return $this->comparisonValue; } /** * @param string */ public function setMetricName($metricName) { $this->metricName = $metricName; } /** * @return string */ public function getMetricName() { return $this->metricName; } /** * @param bool */ public function setNot($not) { $this->not = $not; } /** * @return bool */ public function getNot() { return $this->not; } /** * @param string */ public function setOperator($operator) { $this->operator = $operator; } /** * @return string */ public function getOperator() { return $this->operator; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(MetricFilter::class, 'Google_Service_AnalyticsReporting_MetricFilter');