color = $color; } /** * @return OptionalColor */ public function getColor() { return $this->color; } /** * @param string */ public function setDashStyle($dashStyle) { $this->dashStyle = $dashStyle; } /** * @return string */ public function getDashStyle() { return $this->dashStyle; } /** * @param string */ public function setPropertyState($propertyState) { $this->propertyState = $propertyState; } /** * @return string */ public function getPropertyState() { return $this->propertyState; } /** * @param Dimension */ public function setWidth(Dimension $width) { $this->width = $width; } /** * @return Dimension */ public function getWidth() { return $this->width; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(EmbeddedObjectBorder::class, 'Google_Service_Docs_EmbeddedObjectBorder');