| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- <?php
- # Generated by the protocol buffer compiler. DO NOT EDIT!
- # source: proto/game.proto
- namespace Uraus\Kku\Request;
- use Google\Protobuf\Internal\GPBType;
- use Google\Protobuf\Internal\RepeatedField;
- use Google\Protobuf\Internal\GPBUtil;
- /**
- * 我的所有物品
- *
- * Generated from protobuf message <code>uraus.kku.Request.RequestItemQuery</code>
- */
- class RequestItemQuery extends \Google\Protobuf\Internal\Message
- {
- /**
- * 时间戳
- *
- * Generated from protobuf field <code>int64 times = 1;</code>
- */
- protected $times = 0;
- /**
- * Constructor.
- *
- * @param array $data {
- * Optional. Data for populating the Message object.
- *
- * @type int|string $times
- * 时间戳
- * }
- */
- public function __construct($data = NULL) {
- \GPBMetadata\Proto\Game::initOnce();
- parent::__construct($data);
- }
- /**
- * 时间戳
- *
- * Generated from protobuf field <code>int64 times = 1;</code>
- * @return int|string
- */
- public function getTimes()
- {
- return $this->times;
- }
- /**
- * 时间戳
- *
- * Generated from protobuf field <code>int64 times = 1;</code>
- * @param int|string $var
- * @return $this
- */
- public function setTimes($var)
- {
- GPBUtil::checkInt64($var);
- $this->times = $var;
- return $this;
- }
- }
- // Adding a class alias for backwards compatibility with the previous class name.
- class_alias(RequestItemQuery::class, \Uraus\Kku\Request_RequestItemQuery::class);
|