type = $type; } /** * @return self::TYPE_* */ public function getType() { return $this->type; } /** * The values of the condition. The number of supported values depends on the * condition type. Some support zero values, others one or two values, and * ConditionType.ONE_OF_LIST supports an arbitrary number of values. * * @param ConditionValue[] $values */ public function setValues($values) { $this->values = $values; } /** * @return ConditionValue[] */ public function getValues() { return $this->values; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(BooleanCondition::class, 'Google_Service_Sheets_BooleanCondition');