propresenter-php/php/generated/Rv/Data/TimerStateUpdate.php
2026-03-01 16:12:17 +01:00

107 lines
2.4 KiB
PHP

<?php
# Generated by the protocol buffer compiler. DO NOT EDIT!
# NO CHECKED-IN PROTOBUF GENCODE
# source: proCore.proto
namespace Rv\Data;
use Google\Protobuf\Internal\GPBType;
use Google\Protobuf\Internal\RepeatedField;
use Google\Protobuf\Internal\GPBUtil;
/**
* Generated from protobuf message <code>rv.data.TimerStateUpdate</code>
*/
class TimerStateUpdate extends \Google\Protobuf\Internal\Message
{
/**
* Generated from protobuf field <code>.rv.data.Timer timer = 1;</code>
*/
protected $timer = null;
/**
* Generated from protobuf field <code>.rv.data.TimerRuntimeState state = 2;</code>
*/
protected $state = null;
/**
* Constructor.
*
* @param array $data {
* Optional. Data for populating the Message object.
*
* @type \Rv\Data\Timer $timer
* @type \Rv\Data\TimerRuntimeState $state
* }
*/
public function __construct($data = NULL) {
\GPBMetadata\ProCore::initOnce();
parent::__construct($data);
}
/**
* Generated from protobuf field <code>.rv.data.Timer timer = 1;</code>
* @return \Rv\Data\Timer|null
*/
public function getTimer()
{
return $this->timer;
}
public function hasTimer()
{
return isset($this->timer);
}
public function clearTimer()
{
unset($this->timer);
}
/**
* Generated from protobuf field <code>.rv.data.Timer timer = 1;</code>
* @param \Rv\Data\Timer $var
* @return $this
*/
public function setTimer($var)
{
GPBUtil::checkMessage($var, \Rv\Data\Timer::class);
$this->timer = $var;
return $this;
}
/**
* Generated from protobuf field <code>.rv.data.TimerRuntimeState state = 2;</code>
* @return \Rv\Data\TimerRuntimeState|null
*/
public function getState()
{
return $this->state;
}
public function hasState()
{
return isset($this->state);
}
public function clearState()
{
unset($this->state);
}
/**
* Generated from protobuf field <code>.rv.data.TimerRuntimeState state = 2;</code>
* @param \Rv\Data\TimerRuntimeState $var
* @return $this
*/
public function setState($var)
{
GPBUtil::checkMessage($var, \Rv\Data\TimerRuntimeState::class);
$this->state = $var;
return $this;
}
}