rv.data.API_v1_Identifier */ class API_v1_Identifier extends \Google\Protobuf\Internal\Message { /** * Generated from protobuf field string uuid = 1; */ protected $uuid = ''; /** * Generated from protobuf field string name = 2; */ protected $name = ''; /** * Generated from protobuf field uint32 index = 3; */ protected $index = 0; /** * Constructor. * * @param array $data { * Optional. Data for populating the Message object. * * @type string $uuid * @type string $name * @type int $index * } */ public function __construct($data = NULL) { \GPBMetadata\ProApiV1Identifier::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 uint32 index = 3; * @return int */ public function getIndex() { return $this->index; } /** * Generated from protobuf field uint32 index = 3; * @param int $var * @return $this */ public function setIndex($var) { GPBUtil::checkUint32($var); $this->index = $var; return $this; } }