rv.data.Preferences.Advanced.SearchPaths.Path
*/
class Path extends \Google\Protobuf\Internal\Message
{
/**
* Generated from protobuf field bool enable = 1;
*/
protected $enable = false;
/**
* Generated from protobuf field string name = 2;
*/
protected $name = '';
/**
* Generated from protobuf field string path = 3;
*/
protected $path = '';
/**
* Generated from protobuf field .rv.data.URL.LocalRelativePath.Root url_root = 4;
*/
protected $url_root = 0;
/**
* Constructor.
*
* @param array $data {
* Optional. Data for populating the Message object.
*
* @type bool $enable
* @type string $name
* @type string $path
* @type int $url_root
* }
*/
public function __construct($data = NULL) {
\GPBMetadata\Preferences::initOnce();
parent::__construct($data);
}
/**
* Generated from protobuf field bool enable = 1;
* @return bool
*/
public function getEnable()
{
return $this->enable;
}
/**
* Generated from protobuf field bool enable = 1;
* @param bool $var
* @return $this
*/
public function setEnable($var)
{
GPBUtil::checkBool($var);
$this->enable = $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 string path = 3;
* @return string
*/
public function getPath()
{
return $this->path;
}
/**
* Generated from protobuf field string path = 3;
* @param string $var
* @return $this
*/
public function setPath($var)
{
GPBUtil::checkString($var, True);
$this->path = $var;
return $this;
}
/**
* Generated from protobuf field .rv.data.URL.LocalRelativePath.Root url_root = 4;
* @return int
*/
public function getUrlRoot()
{
return $this->url_root;
}
/**
* Generated from protobuf field .rv.data.URL.LocalRelativePath.Root url_root = 4;
* @param int $var
* @return $this
*/
public function setUrlRoot($var)
{
GPBUtil::checkEnum($var, \Rv\Data\URL\LocalRelativePath\Root::class);
$this->url_root = $var;
return $this;
}
}