| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113 |
- <?php
- # Generated by the protocol buffer compiler. DO NOT EDIT!
- # NO CHECKED-IN PROTOBUF GENCODE
- # source: lily.proto
- namespace Palm\Lily\V1\TeXLiveTask;
- use Google\Protobuf\Internal\GPBType;
- use Google\Protobuf\Internal\RepeatedField;
- use Google\Protobuf\Internal\GPBUtil;
- /**
- * Generated from protobuf message <code>palm.lily.v1.TeXLiveTask.Output</code>
- */
- class Output extends \Google\Protobuf\Internal\Message
- {
- /**
- * Generated from protobuf field <code>.palm.lily.v1.TeXLiveTask.Output.Format format = 1;</code>
- */
- protected $format = 0;
- /**
- * Generated from protobuf field <code>string bucket = 2;</code>
- */
- protected $bucket = '';
- /**
- * Generated from protobuf field <code>string object = 3;</code>
- */
- 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 <code>.palm.lily.v1.TeXLiveTask.Output.Format format = 1;</code>
- * @return int
- */
- public function getFormat()
- {
- return $this->format;
- }
- /**
- * Generated from protobuf field <code>.palm.lily.v1.TeXLiveTask.Output.Format format = 1;</code>
- * @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 <code>string bucket = 2;</code>
- * @return string
- */
- public function getBucket()
- {
- return $this->bucket;
- }
- /**
- * Generated from protobuf field <code>string bucket = 2;</code>
- * @param string $var
- * @return $this
- */
- public function setBucket($var)
- {
- GPBUtil::checkString($var, True);
- $this->bucket = $var;
- return $this;
- }
- /**
- * Generated from protobuf field <code>string object = 3;</code>
- * @return string
- */
- public function getObject()
- {
- return $this->object;
- }
- /**
- * Generated from protobuf field <code>string object = 3;</code>
- * @param string $var
- * @return $this
- */
- public function setObject($var)
- {
- GPBUtil::checkString($var, True);
- $this->object = $var;
- return $this;
- }
- }
|