rv.data.Preferences.Advanced.SearchPaths */ class SearchPaths extends \Google\Protobuf\Internal\Message { /** * Generated from protobuf field bool automatically_relink = 1; */ protected $automatically_relink = false; /** * Generated from protobuf field repeated .rv.data.Preferences.Advanced.SearchPaths.Path paths = 2; */ private $paths; /** * Constructor. * * @param array $data { * Optional. Data for populating the Message object. * * @type bool $automatically_relink * @type array<\Rv\Data\Preferences\Advanced\SearchPaths\Path>|\Google\Protobuf\Internal\RepeatedField $paths * } */ public function __construct($data = NULL) { \GPBMetadata\Preferences::initOnce(); parent::__construct($data); } /** * Generated from protobuf field bool automatically_relink = 1; * @return bool */ public function getAutomaticallyRelink() { return $this->automatically_relink; } /** * Generated from protobuf field bool automatically_relink = 1; * @param bool $var * @return $this */ public function setAutomaticallyRelink($var) { GPBUtil::checkBool($var); $this->automatically_relink = $var; return $this; } /** * Generated from protobuf field repeated .rv.data.Preferences.Advanced.SearchPaths.Path paths = 2; * @return \Google\Protobuf\Internal\RepeatedField */ public function getPaths() { return $this->paths; } /** * Generated from protobuf field repeated .rv.data.Preferences.Advanced.SearchPaths.Path paths = 2; * @param array<\Rv\Data\Preferences\Advanced\SearchPaths\Path>|\Google\Protobuf\Internal\RepeatedField $var * @return $this */ public function setPaths($var) { $arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Rv\Data\Preferences\Advanced\SearchPaths\Path::class); $this->paths = $arr; return $this; } }