placeholder = $placeholder;
}
/**
* @return Placeholder
*/
public function getPlaceholder()
{
return $this->placeholder;
}
/**
* @param ShapeProperties
*/
public function setShapeProperties(ShapeProperties $shapeProperties)
{
$this->shapeProperties = $shapeProperties;
}
/**
* @return ShapeProperties
*/
public function getShapeProperties()
{
return $this->shapeProperties;
}
/**
* @param string
*/
public function setShapeType($shapeType)
{
$this->shapeType = $shapeType;
}
/**
* @return string
*/
public function getShapeType()
{
return $this->shapeType;
}
/**
* @param TextContent
*/
public function setText(TextContent $text)
{
$this->text = $text;
}
/**
* @return TextContent
*/
public function getText()
{
return $this->text;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(Shape::class, 'Google_Service_Slides_Shape');