operatorName = $operatorName; } /** * @return string */ public function getOperatorName() { return $this->operatorName; } /** * @param Value */ public function setValue(Value $value) { $this->value = $value; } /** * @return Value */ public function getValue() { return $this->value; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(ValueFilter::class, 'Google_Service_CloudSearch_ValueFilter');