content = $content;
}
/**
* @return string
*/
public function getContent()
{
return $this->content;
}
/**
* @param TextStyle
*/
public function setStyle(TextStyle $style)
{
$this->style = $style;
}
/**
* @return TextStyle
*/
public function getStyle()
{
return $this->style;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(TextRun::class, 'Google_Service_Slides_TextRun');