rv.data.Slide.Element.DataLink.PCOLive
*/
class PCOLive extends \Google\Protobuf\Internal\Message
{
/**
* Generated from protobuf field .rv.data.Slide.Element.DataLink.PCOLive.Theme theme = 2;
*/
protected $theme = 0;
/**
* Generated from protobuf field .rv.data.Slide.Element.DataLink.PCOLive.CountdownType countdown_type = 3;
*/
protected $countdown_type = 0;
/**
* Constructor.
*
* @param array $data {
* Optional. Data for populating the Message object.
*
* @type int $theme
* @type int $countdown_type
* }
*/
public function __construct($data = NULL) {
\GPBMetadata\Slide::initOnce();
parent::__construct($data);
}
/**
* Generated from protobuf field .rv.data.Slide.Element.DataLink.PCOLive.Theme theme = 2;
* @return int
*/
public function getTheme()
{
return $this->theme;
}
/**
* Generated from protobuf field .rv.data.Slide.Element.DataLink.PCOLive.Theme theme = 2;
* @param int $var
* @return $this
*/
public function setTheme($var)
{
GPBUtil::checkEnum($var, \Rv\Data\Slide\Element\DataLink\PCOLive\Theme::class);
$this->theme = $var;
return $this;
}
/**
* Generated from protobuf field .rv.data.Slide.Element.DataLink.PCOLive.CountdownType countdown_type = 3;
* @return int
*/
public function getCountdownType()
{
return $this->countdown_type;
}
/**
* Generated from protobuf field .rv.data.Slide.Element.DataLink.PCOLive.CountdownType countdown_type = 3;
* @param int $var
* @return $this
*/
public function setCountdownType($var)
{
GPBUtil::checkEnum($var, \Rv\Data\Slide\Element\DataLink\PCOLive\CountdownType::class);
$this->countdown_type = $var;
return $this;
}
}