rv.data.API_v1_Message.API_v1_MessageToken */ class API_v1_MessageToken extends \Google\Protobuf\Internal\Message { /** * Generated from protobuf field string uuid = 1; */ protected $uuid = ''; /** * Generated from protobuf field string name = 2; */ protected $name = ''; protected $TokenType; /** * Constructor. * * @param array $data { * Optional. Data for populating the Message object. * * @type string $uuid * @type string $name * @type \Rv\Data\API_v1_Message\API_v1_MessageToken\API_v1_TextToken $text * @type \Rv\Data\API_v1_Message\API_v1_MessageToken\API_v1_TimerToken $timer * @type \Rv\Data\API_v1_Message\API_v1_MessageToken\API_v1_ClockToken $clock * } */ public function __construct($data = NULL) { \GPBMetadata\ProApiV1Message::initOnce(); parent::__construct($data); } /** * Generated from protobuf field string uuid = 1; * @return string */ public function getUuid() { return $this->uuid; } /** * Generated from protobuf field string uuid = 1; * @param string $var * @return $this */ public function setUuid($var) { GPBUtil::checkString($var, True); $this->uuid = $var; return $this; } /** * Generated from protobuf field string name = 2; * @return string */ public function getName() { return $this->name; } /** * Generated from protobuf field string name = 2; * @param string $var * @return $this */ public function setName($var) { GPBUtil::checkString($var, True); $this->name = $var; return $this; } /** * Generated from protobuf field .rv.data.API_v1_Message.API_v1_MessageToken.API_v1_TextToken text = 3; * @return \Rv\Data\API_v1_Message\API_v1_MessageToken\API_v1_TextToken|null */ public function getText() { return $this->readOneof(3); } public function hasText() { return $this->hasOneof(3); } /** * Generated from protobuf field .rv.data.API_v1_Message.API_v1_MessageToken.API_v1_TextToken text = 3; * @param \Rv\Data\API_v1_Message\API_v1_MessageToken\API_v1_TextToken $var * @return $this */ public function setText($var) { GPBUtil::checkMessage($var, \Rv\Data\API_v1_Message\API_v1_MessageToken\API_v1_TextToken::class); $this->writeOneof(3, $var); return $this; } /** * Generated from protobuf field .rv.data.API_v1_Message.API_v1_MessageToken.API_v1_TimerToken timer = 4; * @return \Rv\Data\API_v1_Message\API_v1_MessageToken\API_v1_TimerToken|null */ public function getTimer() { return $this->readOneof(4); } public function hasTimer() { return $this->hasOneof(4); } /** * Generated from protobuf field .rv.data.API_v1_Message.API_v1_MessageToken.API_v1_TimerToken timer = 4; * @param \Rv\Data\API_v1_Message\API_v1_MessageToken\API_v1_TimerToken $var * @return $this */ public function setTimer($var) { GPBUtil::checkMessage($var, \Rv\Data\API_v1_Message\API_v1_MessageToken\API_v1_TimerToken::class); $this->writeOneof(4, $var); return $this; } /** * Generated from protobuf field .rv.data.API_v1_Message.API_v1_MessageToken.API_v1_ClockToken clock = 5; * @return \Rv\Data\API_v1_Message\API_v1_MessageToken\API_v1_ClockToken|null */ public function getClock() { return $this->readOneof(5); } public function hasClock() { return $this->hasOneof(5); } /** * Generated from protobuf field .rv.data.API_v1_Message.API_v1_MessageToken.API_v1_ClockToken clock = 5; * @param \Rv\Data\API_v1_Message\API_v1_MessageToken\API_v1_ClockToken $var * @return $this */ public function setClock($var) { GPBUtil::checkMessage($var, \Rv\Data\API_v1_Message\API_v1_MessageToken\API_v1_ClockToken::class); $this->writeOneof(5, $var); return $this; } /** * @return string */ public function getTokenType() { return $this->whichOneof("TokenType"); } }