color = $color; } /** * @return OptionalColor */ public function getColor() { return $this->color; } /** * The dash style of the border. * * Accepted values: DASH_STYLE_UNSPECIFIED, SOLID, DOT, DASH * * @param self::DASH_STYLE_* $dashStyle */ public function setDashStyle($dashStyle) { $this->dashStyle = $dashStyle; } /** * @return self::DASH_STYLE_* */ public function getDashStyle() { return $this->dashStyle; } /** * The padding of the border. * * @param Dimension $padding */ public function setPadding(Dimension $padding) { $this->padding = $padding; } /** * @return Dimension */ public function getPadding() { return $this->padding; } /** * The width of the border. * * @param Dimension $width */ 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(ParagraphBorder::class, 'Google_Service_Docs_ParagraphBorder');