comparisonType = $comparisonType; } /** * @return string */ public function getComparisonType() { return $this->comparisonType; } /** * @param string */ public function setDescription($description) { $this->description = $description; } /** * @return string */ public function getDescription() { return $this->description; } /** * @param Color */ public function setNegativeColor(Color $negativeColor) { $this->negativeColor = $negativeColor; } /** * @return Color */ public function getNegativeColor() { return $this->negativeColor; } /** * @param ColorStyle */ public function setNegativeColorStyle(ColorStyle $negativeColorStyle) { $this->negativeColorStyle = $negativeColorStyle; } /** * @return ColorStyle */ public function getNegativeColorStyle() { return $this->negativeColorStyle; } /** * @param TextPosition */ public function setPosition(TextPosition $position) { $this->position = $position; } /** * @return TextPosition */ public function getPosition() { return $this->position; } /** * @param Color */ public function setPositiveColor(Color $positiveColor) { $this->positiveColor = $positiveColor; } /** * @return Color */ public function getPositiveColor() { return $this->positiveColor; } /** * @param ColorStyle */ public function setPositiveColorStyle(ColorStyle $positiveColorStyle) { $this->positiveColorStyle = $positiveColorStyle; } /** * @return ColorStyle */ public function getPositiveColorStyle() { return $this->positiveColorStyle; } /** * @param TextFormat */ public function setTextFormat(TextFormat $textFormat) { $this->textFormat = $textFormat; } /** * @return TextFormat */ public function getTextFormat() { return $this->textFormat; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(BaselineValueFormat::class, 'Google_Service_Sheets_BaselineValueFormat');