propresenter-php/php/generated/Rv/Data/Slide/Element/DataLink/PCOLive.php
2026-03-01 16:12:17 +01:00

87 lines
2.3 KiB
PHP

<?php
# Generated by the protocol buffer compiler. DO NOT EDIT!
# NO CHECKED-IN PROTOBUF GENCODE
# source: slide.proto
namespace Rv\Data\Slide\Element\DataLink;
use Google\Protobuf\Internal\GPBType;
use Google\Protobuf\Internal\RepeatedField;
use Google\Protobuf\Internal\GPBUtil;
/**
* Generated from protobuf message <code>rv.data.Slide.Element.DataLink.PCOLive</code>
*/
class PCOLive extends \Google\Protobuf\Internal\Message
{
/**
* Generated from protobuf field <code>.rv.data.Slide.Element.DataLink.PCOLive.Theme theme = 2;</code>
*/
protected $theme = 0;
/**
* Generated from protobuf field <code>.rv.data.Slide.Element.DataLink.PCOLive.CountdownType countdown_type = 3;</code>
*/
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 <code>.rv.data.Slide.Element.DataLink.PCOLive.Theme theme = 2;</code>
* @return int
*/
public function getTheme()
{
return $this->theme;
}
/**
* Generated from protobuf field <code>.rv.data.Slide.Element.DataLink.PCOLive.Theme theme = 2;</code>
* @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 <code>.rv.data.Slide.Element.DataLink.PCOLive.CountdownType countdown_type = 3;</code>
* @return int
*/
public function getCountdownType()
{
return $this->countdown_type;
}
/**
* Generated from protobuf field <code>.rv.data.Slide.Element.DataLink.PCOLive.CountdownType countdown_type = 3;</code>
* @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;
}
}