rv.data.Slide.Element.Build */ class Build extends \Google\Protobuf\Internal\Message { /** * Generated from protobuf field .rv.data.UUID uuid = 1; */ protected $uuid = null; /** * Generated from protobuf field .rv.data.UUID elementUUID = 2; */ protected $elementUUID = null; /** * Generated from protobuf field .rv.data.Slide.Element.Build.Start start = 3; */ protected $start = 0; /** * Generated from protobuf field double delayTime = 4; */ protected $delayTime = 0.0; /** * Generated from protobuf field .rv.data.Transition transition = 5; */ protected $transition = null; /** * Constructor. * * @param array $data { * Optional. Data for populating the Message object. * * @type \Rv\Data\UUID $uuid * @type \Rv\Data\UUID $elementUUID * @type int $start * @type float $delayTime * @type \Rv\Data\Transition $transition * } */ public function __construct($data = NULL) { \GPBMetadata\Slide::initOnce(); parent::__construct($data); } /** * Generated from protobuf field .rv.data.UUID uuid = 1; * @return \Rv\Data\UUID|null */ public function getUuid() { return $this->uuid; } public function hasUuid() { return isset($this->uuid); } public function clearUuid() { unset($this->uuid); } /** * Generated from protobuf field .rv.data.UUID uuid = 1; * @param \Rv\Data\UUID $var * @return $this */ public function setUuid($var) { GPBUtil::checkMessage($var, \Rv\Data\UUID::class); $this->uuid = $var; return $this; } /** * Generated from protobuf field .rv.data.UUID elementUUID = 2; * @return \Rv\Data\UUID|null */ public function getElementUUID() { return $this->elementUUID; } public function hasElementUUID() { return isset($this->elementUUID); } public function clearElementUUID() { unset($this->elementUUID); } /** * Generated from protobuf field .rv.data.UUID elementUUID = 2; * @param \Rv\Data\UUID $var * @return $this */ public function setElementUUID($var) { GPBUtil::checkMessage($var, \Rv\Data\UUID::class); $this->elementUUID = $var; return $this; } /** * Generated from protobuf field .rv.data.Slide.Element.Build.Start start = 3; * @return int */ public function getStart() { return $this->start; } /** * Generated from protobuf field .rv.data.Slide.Element.Build.Start start = 3; * @param int $var * @return $this */ public function setStart($var) { GPBUtil::checkEnum($var, \Rv\Data\Slide\Element\Build\Start::class); $this->start = $var; return $this; } /** * Generated from protobuf field double delayTime = 4; * @return float */ public function getDelayTime() { return $this->delayTime; } /** * Generated from protobuf field double delayTime = 4; * @param float $var * @return $this */ public function setDelayTime($var) { GPBUtil::checkDouble($var); $this->delayTime = $var; return $this; } /** * Generated from protobuf field .rv.data.Transition transition = 5; * @return \Rv\Data\Transition|null */ public function getTransition() { return $this->transition; } public function hasTransition() { return isset($this->transition); } public function clearTransition() { unset($this->transition); } /** * Generated from protobuf field .rv.data.Transition transition = 5; * @param \Rv\Data\Transition $var * @return $this */ public function setTransition($var) { GPBUtil::checkMessage($var, \Rv\Data\Transition::class); $this->transition = $var; return $this; } }