| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- <?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.RequestMatchexchangeOpen</code>
- */
- class RequestMatchexchangeOpen 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(RequestMatchexchangeOpen::class, \Uraus\Kku\Request_RequestMatchexchangeOpen::class);
|