actions = $actions;
}
/**
* @return Action[]
*/
public function getActions()
{
return $this->actions;
}
/**
* @param SafeHtmlProto
*/
public function setDescription(SafeHtmlProto $description)
{
$this->description = $description;
}
/**
* @return SafeHtmlProto
*/
public function getDescription()
{
return $this->description;
}
/**
* @param BackgroundColoredText
*/
public function setSubtitle(BackgroundColoredText $subtitle)
{
$this->subtitle = $subtitle;
}
/**
* @return BackgroundColoredText
*/
public function getSubtitle()
{
return $this->subtitle;
}
/**
* @param BackgroundColoredText
*/
public function setTitle(BackgroundColoredText $title)
{
$this->title = $title;
}
/**
* @return BackgroundColoredText
*/
public function getTitle()
{
return $this->title;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(Content::class, 'Google_Service_CloudSearch_Content');