134 lines
3.3 KiB
PHP
134 lines
3.3 KiB
PHP
<?php
|
|
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
# NO CHECKED-IN PROTOBUF GENCODE
|
|
# source: timers.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.TimersDocument</code>
|
|
*/
|
|
class TimersDocument extends \Google\Protobuf\Internal\Message
|
|
{
|
|
/**
|
|
* Generated from protobuf field <code>.rv.data.ApplicationInfo application_info = 1;</code>
|
|
*/
|
|
protected $application_info = null;
|
|
/**
|
|
* Generated from protobuf field <code>.rv.data.Clock clock = 2;</code>
|
|
*/
|
|
protected $clock = null;
|
|
/**
|
|
* Generated from protobuf field <code>repeated .rv.data.Timer timers = 3;</code>
|
|
*/
|
|
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 <code>.rv.data.ApplicationInfo application_info = 1;</code>
|
|
* @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 <code>.rv.data.ApplicationInfo application_info = 1;</code>
|
|
* @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 <code>.rv.data.Clock clock = 2;</code>
|
|
* @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 <code>.rv.data.Clock clock = 2;</code>
|
|
* @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 <code>repeated .rv.data.Timer timers = 3;</code>
|
|
* @return \Google\Protobuf\Internal\RepeatedField
|
|
*/
|
|
public function getTimers()
|
|
{
|
|
return $this->timers;
|
|
}
|
|
|
|
/**
|
|
* Generated from protobuf field <code>repeated .rv.data.Timer timers = 3;</code>
|
|
* @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;
|
|
}
|
|
|
|
}
|
|
|