60 lines
1.4 KiB
PHP
60 lines
1.4 KiB
PHP
<?php
|
|
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
# NO CHECKED-IN PROTOBUF GENCODE
|
|
# source: url.proto
|
|
|
|
namespace Rv\Data\URL\ExternalRelativePath;
|
|
|
|
use Google\Protobuf\Internal\GPBType;
|
|
use Google\Protobuf\Internal\RepeatedField;
|
|
use Google\Protobuf\Internal\GPBUtil;
|
|
|
|
/**
|
|
* Generated from protobuf message <code>rv.data.URL.ExternalRelativePath.MacOSExternalVolume</code>
|
|
*/
|
|
class MacOSExternalVolume extends \Google\Protobuf\Internal\Message
|
|
{
|
|
/**
|
|
* Generated from protobuf field <code>string volume_name = 1;</code>
|
|
*/
|
|
protected $volume_name = '';
|
|
|
|
/**
|
|
* Constructor.
|
|
*
|
|
* @param array $data {
|
|
* Optional. Data for populating the Message object.
|
|
*
|
|
* @type string $volume_name
|
|
* }
|
|
*/
|
|
public function __construct($data = NULL) {
|
|
\GPBMetadata\Url::initOnce();
|
|
parent::__construct($data);
|
|
}
|
|
|
|
/**
|
|
* Generated from protobuf field <code>string volume_name = 1;</code>
|
|
* @return string
|
|
*/
|
|
public function getVolumeName()
|
|
{
|
|
return $this->volume_name;
|
|
}
|
|
|
|
/**
|
|
* Generated from protobuf field <code>string volume_name = 1;</code>
|
|
* @param string $var
|
|
* @return $this
|
|
*/
|
|
public function setVolumeName($var)
|
|
{
|
|
GPBUtil::checkString($var, True);
|
|
$this->volume_name = $var;
|
|
|
|
return $this;
|
|
}
|
|
|
|
}
|
|
|