palm.lily.v1.TeXLiveTask.Output
*/
class Output extends \Google\Protobuf\Internal\Message
{
/**
* Generated from protobuf field .palm.lily.v1.TeXLiveTask.Output.Format format = 1;
*/
protected $format = 0;
/**
* Generated from protobuf field string bucket = 2;
*/
protected $bucket = '';
/**
* Generated from protobuf field string object = 3;
*/
protected $object = '';
/**
* Constructor.
*
* @param array $data {
* Optional. Data for populating the Message object.
*
* @type int $format
* @type string $bucket
* @type string $object
* }
*/
public function __construct($data = NULL) {
\GPBMetadata\Lily::initOnce();
parent::__construct($data);
}
/**
* Generated from protobuf field .palm.lily.v1.TeXLiveTask.Output.Format format = 1;
* @return int
*/
public function getFormat()
{
return $this->format;
}
/**
* Generated from protobuf field .palm.lily.v1.TeXLiveTask.Output.Format format = 1;
* @param int $var
* @return $this
*/
public function setFormat($var)
{
GPBUtil::checkEnum($var, \Palm\Lily\V1\TeXLiveTask\Output\Format::class);
$this->format = $var;
return $this;
}
/**
* Generated from protobuf field string bucket = 2;
* @return string
*/
public function getBucket()
{
return $this->bucket;
}
/**
* Generated from protobuf field string bucket = 2;
* @param string $var
* @return $this
*/
public function setBucket($var)
{
GPBUtil::checkString($var, True);
$this->bucket = $var;
return $this;
}
/**
* Generated from protobuf field string object = 3;
* @return string
*/
public function getObject()
{
return $this->object;
}
/**
* Generated from protobuf field string object = 3;
* @param string $var
* @return $this
*/
public function setObject($var)
{
GPBUtil::checkString($var, True);
$this->object = $var;
return $this;
}
}