| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- <?php
- # Generated by the protocol buffer compiler. DO NOT EDIT!
- # source: tulip.proto
- namespace Mint\Tulip\V1;
- use Google\Protobuf\Internal\GPBType;
- use Google\Protobuf\Internal\RepeatedField;
- use Google\Protobuf\Internal\GPBUtil;
- /**
- * Generated from protobuf message <code>mint.tulip.v1.BookListResponse</code>
- */
- class BookListResponse extends \Google\Protobuf\Internal\Message
- {
- /**
- * Generated from protobuf field <code>repeated .mint.tulip.v1.BookListResponse.Item items = 1;</code>
- */
- private $items;
- /**
- * Constructor.
- *
- * @param array $data {
- * Optional. Data for populating the Message object.
- *
- * @type array<\Mint\Tulip\V1\BookListResponse\Item>|\Google\Protobuf\Internal\RepeatedField $items
- * }
- */
- public function __construct($data = NULL) {
- \GPBMetadata\Tulip::initOnce();
- parent::__construct($data);
- }
- /**
- * Generated from protobuf field <code>repeated .mint.tulip.v1.BookListResponse.Item items = 1;</code>
- * @return \Google\Protobuf\Internal\RepeatedField
- */
- public function getItems()
- {
- return $this->items;
- }
- /**
- * Generated from protobuf field <code>repeated .mint.tulip.v1.BookListResponse.Item items = 1;</code>
- * @param array<\Mint\Tulip\V1\BookListResponse\Item>|\Google\Protobuf\Internal\RepeatedField $var
- * @return $this
- */
- public function setItems($var)
- {
- $arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Mint\Tulip\V1\BookListResponse\Item::class);
- $this->items = $arr;
- return $this;
- }
- }
|