| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- <?php
- # Generated by the protocol buffer compiler. DO NOT EDIT!
- # NO CHECKED-IN PROTOBUF GENCODE
- # source: lily.proto
- namespace Palm\Lily\V1;
- use Google\Protobuf\Internal\GPBType;
- use Google\Protobuf\Internal\RepeatedField;
- use Google\Protobuf\Internal\GPBUtil;
- /**
- * Generated from protobuf message <code>palm.lily.v1.TeXLiveResponse</code>
- */
- class TeXLiveResponse extends \Google\Protobuf\Internal\Message
- {
- /**
- * Generated from protobuf field <code>string bucket = 1;</code>
- */
- protected $bucket = '';
- /**
- * Generated from protobuf field <code>string object = 2;</code>
- */
- protected $object = '';
- /**
- * Constructor.
- *
- * @param array $data {
- * Optional. Data for populating the Message object.
- *
- * @type string $bucket
- * @type string $object
- * }
- */
- public function __construct($data = NULL) {
- \GPBMetadata\Lily::initOnce();
- parent::__construct($data);
- }
- /**
- * Generated from protobuf field <code>string bucket = 1;</code>
- * @return string
- */
- public function getBucket()
- {
- return $this->bucket;
- }
- /**
- * Generated from protobuf field <code>string bucket = 1;</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 = 2;</code>
- * @return string
- */
- public function getObject()
- {
- return $this->object;
- }
- /**
- * Generated from protobuf field <code>string object = 2;</code>
- * @param string $var
- * @return $this
- */
- public function setObject($var)
- {
- GPBUtil::checkString($var, True);
- $this->object = $var;
- return $this;
- }
- }
|