background = $background; } /** * @return string */ public function getBackground() { return $this->background; } /** * @param string */ public function setBorder($border) { $this->border = $border; } /** * @return string */ public function getBorder() { return $this->border; } /** * @param string */ public function setText($text) { $this->text = $text; } /** * @return string */ public function getText() { return $this->text; } /** * @param string */ public function setTitle($title) { $this->title = $title; } /** * @return string */ public function getTitle() { return $this->title; } /** * @param string */ public function setUrl($url) { $this->url = $url; } /** * @return string */ public function getUrl() { return $this->url; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(AdStyleColors::class, 'Google_Service_AdSenseHost_AdStyleColors');