namedStyleType = $namedStyleType;
}
/**
* @return string
*/
public function getNamedStyleType()
{
return $this->namedStyleType;
}
/**
* @param ParagraphStyle
*/
public function setParagraphStyle(ParagraphStyle $paragraphStyle)
{
$this->paragraphStyle = $paragraphStyle;
}
/**
* @return ParagraphStyle
*/
public function getParagraphStyle()
{
return $this->paragraphStyle;
}
/**
* @param TextStyle
*/
public function setTextStyle(TextStyle $textStyle)
{
$this->textStyle = $textStyle;
}
/**
* @return TextStyle
*/
public function getTextStyle()
{
return $this->textStyle;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(NamedStyle::class, 'Google_Service_Docs_NamedStyle');