propresenter-php/php/generated/Rv/Data/Preferences/Advanced/SearchPaths/Path.php
2026-03-01 16:12:17 +01:00

141 lines
3.2 KiB
PHP

<?php
# Generated by the protocol buffer compiler. DO NOT EDIT!
# NO CHECKED-IN PROTOBUF GENCODE
# source: preferences.proto
namespace Rv\Data\Preferences\Advanced\SearchPaths;
use Google\Protobuf\Internal\GPBType;
use Google\Protobuf\Internal\RepeatedField;
use Google\Protobuf\Internal\GPBUtil;
/**
* Generated from protobuf message <code>rv.data.Preferences.Advanced.SearchPaths.Path</code>
*/
class Path extends \Google\Protobuf\Internal\Message
{
/**
* Generated from protobuf field <code>bool enable = 1;</code>
*/
protected $enable = false;
/**
* Generated from protobuf field <code>string name = 2;</code>
*/
protected $name = '';
/**
* Generated from protobuf field <code>string path = 3;</code>
*/
protected $path = '';
/**
* Generated from protobuf field <code>.rv.data.URL.LocalRelativePath.Root url_root = 4;</code>
*/
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 <code>bool enable = 1;</code>
* @return bool
*/
public function getEnable()
{
return $this->enable;
}
/**
* Generated from protobuf field <code>bool enable = 1;</code>
* @param bool $var
* @return $this
*/
public function setEnable($var)
{
GPBUtil::checkBool($var);
$this->enable = $var;
return $this;
}
/**
* Generated from protobuf field <code>string name = 2;</code>
* @return string
*/
public function getName()
{
return $this->name;
}
/**
* Generated from protobuf field <code>string name = 2;</code>
* @param string $var
* @return $this
*/
public function setName($var)
{
GPBUtil::checkString($var, True);
$this->name = $var;
return $this;
}
/**
* Generated from protobuf field <code>string path = 3;</code>
* @return string
*/
public function getPath()
{
return $this->path;
}
/**
* Generated from protobuf field <code>string path = 3;</code>
* @param string $var
* @return $this
*/
public function setPath($var)
{
GPBUtil::checkString($var, True);
$this->path = $var;
return $this;
}
/**
* Generated from protobuf field <code>.rv.data.URL.LocalRelativePath.Root url_root = 4;</code>
* @return int
*/
public function getUrlRoot()
{
return $this->url_root;
}
/**
* Generated from protobuf field <code>.rv.data.URL.LocalRelativePath.Root url_root = 4;</code>
* @param int $var
* @return $this
*/
public function setUrlRoot($var)
{
GPBUtil::checkEnum($var, \Rv\Data\URL\LocalRelativePath\Root::class);
$this->url_root = $var;
return $this;
}
}