backgroundColor = $backgroundColor; } /** * @return string */ public function getBackgroundColor() { return $this->backgroundColor; } /** * @param string */ public function setTextColor($textColor) { $this->textColor = $textColor; } /** * @return string */ public function getTextColor() { return $this->textColor; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(LabelColor::class, 'Google_Service_Gmail_LabelColor');