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 Dimension
*/
public function setPadding(Dimension $padding)
{
$this->padding = $padding;
}
/**
* @return Dimension
*/
public function getPadding()
{
return $this->padding;
}
/**
* @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(ParagraphBorder::class, 'Google_Service_Docs_ParagraphBorder');