bullet = $bullet;
}
/**
* @return Bullet
*/
public function getBullet()
{
return $this->bullet;
}
/**
* @param ParagraphElement[]
*/
public function setElements($elements)
{
$this->elements = $elements;
}
/**
* @return ParagraphElement[]
*/
public function getElements()
{
return $this->elements;
}
/**
* @param ParagraphStyle
*/
public function setParagraphStyle(ParagraphStyle $paragraphStyle)
{
$this->paragraphStyle = $paragraphStyle;
}
/**
* @return ParagraphStyle
*/
public function getParagraphStyle()
{
return $this->paragraphStyle;
}
/**
* @param string[]
*/
public function setPositionedObjectIds($positionedObjectIds)
{
$this->positionedObjectIds = $positionedObjectIds;
}
/**
* @return string[]
*/
public function getPositionedObjectIds()
{
return $this->positionedObjectIds;
}
/**
* @param SuggestedBullet[]
*/
public function setSuggestedBulletChanges($suggestedBulletChanges)
{
$this->suggestedBulletChanges = $suggestedBulletChanges;
}
/**
* @return SuggestedBullet[]
*/
public function getSuggestedBulletChanges()
{
return $this->suggestedBulletChanges;
}
/**
* @param SuggestedParagraphStyle[]
*/
public function setSuggestedParagraphStyleChanges($suggestedParagraphStyleChanges)
{
$this->suggestedParagraphStyleChanges = $suggestedParagraphStyleChanges;
}
/**
* @return SuggestedParagraphStyle[]
*/
public function getSuggestedParagraphStyleChanges()
{
return $this->suggestedParagraphStyleChanges;
}
/**
* @param ObjectReferences[]
*/
public function setSuggestedPositionedObjectIds($suggestedPositionedObjectIds)
{
$this->suggestedPositionedObjectIds = $suggestedPositionedObjectIds;
}
/**
* @return ObjectReferences[]
*/
public function getSuggestedPositionedObjectIds()
{
return $this->suggestedPositionedObjectIds;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(Paragraph::class, 'Google_Service_Docs_Paragraph');