buttons = $buttons;
}
/**
* @return Button[]
*/
public function getButtons()
{
return $this->buttons;
}
/**
* @param TextButton
*/
public function setPrimaryButton(TextButton $primaryButton)
{
$this->primaryButton = $primaryButton;
}
/**
* @return TextButton
*/
public function getPrimaryButton()
{
return $this->primaryButton;
}
/**
* @param TextButton
*/
public function setSecondaryButton(TextButton $secondaryButton)
{
$this->secondaryButton = $secondaryButton;
}
/**
* @return TextButton
*/
public function getSecondaryButton()
{
return $this->secondaryButton;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(FixedFooter::class, 'Google_Service_CloudSearch_FixedFooter');