condition = $condition; } /** * @return BooleanCondition */ public function getCondition() { return $this->condition; } /** * @param string[] */ public function setHiddenValues($hiddenValues) { $this->hiddenValues = $hiddenValues; } /** * @return string[] */ public function getHiddenValues() { return $this->hiddenValues; } /** * @param Color */ public function setVisibleBackgroundColor(Color $visibleBackgroundColor) { $this->visibleBackgroundColor = $visibleBackgroundColor; } /** * @return Color */ public function getVisibleBackgroundColor() { return $this->visibleBackgroundColor; } /** * @param ColorStyle */ public function setVisibleBackgroundColorStyle(ColorStyle $visibleBackgroundColorStyle) { $this->visibleBackgroundColorStyle = $visibleBackgroundColorStyle; } /** * @return ColorStyle */ public function getVisibleBackgroundColorStyle() { return $this->visibleBackgroundColorStyle; } /** * @param Color */ public function setVisibleForegroundColor(Color $visibleForegroundColor) { $this->visibleForegroundColor = $visibleForegroundColor; } /** * @return Color */ public function getVisibleForegroundColor() { return $this->visibleForegroundColor; } /** * @param ColorStyle */ public function setVisibleForegroundColorStyle(ColorStyle $visibleForegroundColorStyle) { $this->visibleForegroundColorStyle = $visibleForegroundColorStyle; } /** * @return ColorStyle */ public function getVisibleForegroundColorStyle() { return $this->visibleForegroundColorStyle; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(FilterCriteria::class, 'Google_Service_Sheets_FilterCriteria');