type = $type;
}
/**
* @return string
*/
public function getType()
{
return $this->type;
}
/**
* @param ConditionValue[]
*/
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');