| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- <?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.Section</code>
- */
- class Section extends \Google\Protobuf\Internal\Message
- {
- /**
- * Generated from protobuf field <code>repeated .palm.lily.v1.Section items = 1;</code>
- */
- private $items;
- /**
- * Constructor.
- *
- * @param array $data {
- * Optional. Data for populating the Message object.
- *
- * @type array<\Palm\Lily\V1\Section>|\Google\Protobuf\Internal\RepeatedField $items
- * }
- */
- public function __construct($data = NULL) {
- \GPBMetadata\Lily::initOnce();
- parent::__construct($data);
- }
- /**
- * Generated from protobuf field <code>repeated .palm.lily.v1.Section items = 1;</code>
- * @return \Google\Protobuf\Internal\RepeatedField
- */
- public function getItems()
- {
- return $this->items;
- }
- /**
- * Generated from protobuf field <code>repeated .palm.lily.v1.Section items = 1;</code>
- * @param array<\Palm\Lily\V1\Section>|\Google\Protobuf\Internal\RepeatedField $var
- * @return $this
- */
- public function setItems($var)
- {
- $arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Palm\Lily\V1\Section::class);
- $this->items = $arr;
- return $this;
- }
- }
|