rv.data.API_v1_TimerValue */ class API_v1_TimerValue extends \Google\Protobuf\Internal\Message { /** * Generated from protobuf field .rv.data.API_v1_Identifier id = 1; */ protected $id = null; /** * Generated from protobuf field string time = 2; */ protected $time = ''; /** * Generated from protobuf field .rv.data.API_v1_TimerState state = 3; */ protected $state = 0; /** * Constructor. * * @param array $data { * Optional. Data for populating the Message object. * * @type \Rv\Data\API_v1_Identifier $id * @type string $time * @type int $state * } */ public function __construct($data = NULL) { \GPBMetadata\ProApiV1Timer::initOnce(); parent::__construct($data); } /** * Generated from protobuf field .rv.data.API_v1_Identifier id = 1; * @return \Rv\Data\API_v1_Identifier|null */ public function getId() { return $this->id; } public function hasId() { return isset($this->id); } public function clearId() { unset($this->id); } /** * Generated from protobuf field .rv.data.API_v1_Identifier id = 1; * @param \Rv\Data\API_v1_Identifier $var * @return $this */ public function setId($var) { GPBUtil::checkMessage($var, \Rv\Data\API_v1_Identifier::class); $this->id = $var; return $this; } /** * Generated from protobuf field string time = 2; * @return string */ public function getTime() { return $this->time; } /** * Generated from protobuf field string time = 2; * @param string $var * @return $this */ public function setTime($var) { GPBUtil::checkString($var, True); $this->time = $var; return $this; } /** * Generated from protobuf field .rv.data.API_v1_TimerState state = 3; * @return int */ public function getState() { return $this->state; } /** * Generated from protobuf field .rv.data.API_v1_TimerState state = 3; * @param int $var * @return $this */ public function setState($var) { GPBUtil::checkEnum($var, \Rv\Data\API_v1_TimerState::class); $this->state = $var; return $this; } }