rv.data.TimersDocument
*/
class TimersDocument extends \Google\Protobuf\Internal\Message
{
/**
* Generated from protobuf field .rv.data.ApplicationInfo application_info = 1;
*/
protected $application_info = null;
/**
* Generated from protobuf field .rv.data.Clock clock = 2;
*/
protected $clock = null;
/**
* Generated from protobuf field repeated .rv.data.Timer timers = 3;
*/
private $timers;
/**
* Constructor.
*
* @param array $data {
* Optional. Data for populating the Message object.
*
* @type \Rv\Data\ApplicationInfo $application_info
* @type \Rv\Data\Clock $clock
* @type array<\Rv\Data\Timer>|\Google\Protobuf\Internal\RepeatedField $timers
* }
*/
public function __construct($data = NULL) {
\GPBMetadata\Timers::initOnce();
parent::__construct($data);
}
/**
* Generated from protobuf field .rv.data.ApplicationInfo application_info = 1;
* @return \Rv\Data\ApplicationInfo|null
*/
public function getApplicationInfo()
{
return $this->application_info;
}
public function hasApplicationInfo()
{
return isset($this->application_info);
}
public function clearApplicationInfo()
{
unset($this->application_info);
}
/**
* Generated from protobuf field .rv.data.ApplicationInfo application_info = 1;
* @param \Rv\Data\ApplicationInfo $var
* @return $this
*/
public function setApplicationInfo($var)
{
GPBUtil::checkMessage($var, \Rv\Data\ApplicationInfo::class);
$this->application_info = $var;
return $this;
}
/**
* Generated from protobuf field .rv.data.Clock clock = 2;
* @return \Rv\Data\Clock|null
*/
public function getClock()
{
return $this->clock;
}
public function hasClock()
{
return isset($this->clock);
}
public function clearClock()
{
unset($this->clock);
}
/**
* Generated from protobuf field .rv.data.Clock clock = 2;
* @param \Rv\Data\Clock $var
* @return $this
*/
public function setClock($var)
{
GPBUtil::checkMessage($var, \Rv\Data\Clock::class);
$this->clock = $var;
return $this;
}
/**
* Generated from protobuf field repeated .rv.data.Timer timers = 3;
* @return \Google\Protobuf\Internal\RepeatedField
*/
public function getTimers()
{
return $this->timers;
}
/**
* Generated from protobuf field repeated .rv.data.Timer timers = 3;
* @param array<\Rv\Data\Timer>|\Google\Protobuf\Internal\RepeatedField $var
* @return $this
*/
public function setTimers($var)
{
$arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Rv\Data\Timer::class);
$this->timers = $arr;
return $this;
}
}