cardActions = $cardActions;
}
/**
* @return CardAction[]
*/
public function getCardActions()
{
return $this->cardActions;
}
/**
* @param string
*/
public function setDisplayStyle($displayStyle)
{
$this->displayStyle = $displayStyle;
}
/**
* @return string
*/
public function getDisplayStyle()
{
return $this->displayStyle;
}
/**
* @param FixedFooter
*/
public function setFixedFooter(FixedFooter $fixedFooter)
{
$this->fixedFooter = $fixedFooter;
}
/**
* @return FixedFooter
*/
public function getFixedFooter()
{
return $this->fixedFooter;
}
/**
* @param CardHeader
*/
public function setHeader(CardHeader $header)
{
$this->header = $header;
}
/**
* @return CardHeader
*/
public function getHeader()
{
return $this->header;
}
/**
* @param string
*/
public function setName($name)
{
$this->name = $name;
}
/**
* @return string
*/
public function getName()
{
return $this->name;
}
/**
* @param CardHeader
*/
public function setPeekCardHeader(CardHeader $peekCardHeader)
{
$this->peekCardHeader = $peekCardHeader;
}
/**
* @return CardHeader
*/
public function getPeekCardHeader()
{
return $this->peekCardHeader;
}
/**
* @param Section[]
*/
public function setSections($sections)
{
$this->sections = $sections;
}
/**
* @return Section[]
*/
public function getSections()
{
return $this->sections;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(Card::class, 'Google_Service_CloudSearch_Card');