| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108 |
- <?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;
- /**
- * https://pandoc.org/MANUAL.html
- *
- * Generated from protobuf message <code>palm.lily.v1.PandocTask</code>
- */
- class PandocTask extends \Google\Protobuf\Internal\Message
- {
- /**
- * Generated from protobuf field <code>.palm.lily.v1.PandocTask.Input input = 1;</code>
- */
- protected $input = null;
- /**
- * Generated from protobuf field <code>.palm.lily.v1.PandocTask.Output output = 2;</code>
- */
- protected $output = null;
- /**
- * Constructor.
- *
- * @param array $data {
- * Optional. Data for populating the Message object.
- *
- * @type \Palm\Lily\V1\PandocTask\Input $input
- * @type \Palm\Lily\V1\PandocTask\Output $output
- * }
- */
- public function __construct($data = NULL) {
- \GPBMetadata\Lily::initOnce();
- parent::__construct($data);
- }
- /**
- * Generated from protobuf field <code>.palm.lily.v1.PandocTask.Input input = 1;</code>
- * @return \Palm\Lily\V1\PandocTask\Input|null
- */
- public function getInput()
- {
- return $this->input;
- }
- public function hasInput()
- {
- return isset($this->input);
- }
- public function clearInput()
- {
- unset($this->input);
- }
- /**
- * Generated from protobuf field <code>.palm.lily.v1.PandocTask.Input input = 1;</code>
- * @param \Palm\Lily\V1\PandocTask\Input $var
- * @return $this
- */
- public function setInput($var)
- {
- GPBUtil::checkMessage($var, \Palm\Lily\V1\PandocTask\Input::class);
- $this->input = $var;
- return $this;
- }
- /**
- * Generated from protobuf field <code>.palm.lily.v1.PandocTask.Output output = 2;</code>
- * @return \Palm\Lily\V1\PandocTask\Output|null
- */
- public function getOutput()
- {
- return $this->output;
- }
- public function hasOutput()
- {
- return isset($this->output);
- }
- public function clearOutput()
- {
- unset($this->output);
- }
- /**
- * Generated from protobuf field <code>.palm.lily.v1.PandocTask.Output output = 2;</code>
- * @param \Palm\Lily\V1\PandocTask\Output $var
- * @return $this
- */
- public function setOutput($var)
- {
- GPBUtil::checkMessage($var, \Palm\Lily\V1\PandocTask\Output::class);
- $this->output = $var;
- return $this;
- }
- }
|