| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- <?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.RequestGodOpen</code>
- */
- class RequestGodOpen extends \Google\Protobuf\Internal\Message
- {
- /**
- * 神像 ID
- *
- * Generated from protobuf field <code>int64 god_id = 1;</code>
- */
- protected $god_id = 0;
- /**
- * Constructor.
- *
- * @param array $data {
- * Optional. Data for populating the Message object.
- *
- * @type int|string $god_id
- * 神像 ID
- * }
- */
- public function __construct($data = NULL) {
- \GPBMetadata\Proto\Game::initOnce();
- parent::__construct($data);
- }
- /**
- * 神像 ID
- *
- * Generated from protobuf field <code>int64 god_id = 1;</code>
- * @return int|string
- */
- public function getGodId()
- {
- return $this->god_id;
- }
- /**
- * 神像 ID
- *
- * Generated from protobuf field <code>int64 god_id = 1;</code>
- * @param int|string $var
- * @return $this
- */
- public function setGodId($var)
- {
- GPBUtil::checkInt64($var);
- $this->god_id = $var;
- return $this;
- }
- }
- // Adding a class alias for backwards compatibility with the previous class name.
- class_alias(RequestGodOpen::class, \Uraus\Kku\Request_RequestGodOpen::class);
|