alias = $alias; } /** * @return string */ public function getAlias() { return $this->alias; } /** * @param string */ public function setFunction($function) { $this->function = $function; } /** * @return string */ public function getFunction() { return $this->function; } /** * @param string */ public function setName($name) { $this->name = $name; } /** * @return string */ public function getName() { return $this->name; } /** * @param string */ public function setOperator($operator) { $this->operator = $operator; } /** * @return string */ public function getOperator() { return $this->operator; } /** * @param string */ public function setValue($value) { $this->value = $value; } /** * @return string */ public function getValue() { return $this->value; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(GoogleCloudApigeeV1QueryMetric::class, 'Google_Service_Apigee_GoogleCloudApigeeV1QueryMetric');