| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104 |
- <?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.RequestPetVegeteal</code>
- */
- class RequestPetVegeteal extends \Google\Protobuf\Internal\Message
- {
- /**
- *被偷的玩家id
- *
- * Generated from protobuf field <code>int64 user_id = 1;</code>
- */
- protected $user_id = 0;
- /**
- * 宠物ID
- *
- * Generated from protobuf field <code>int64 pet_id = 2;</code>
- */
- protected $pet_id = 0;
- /**
- * Constructor.
- *
- * @param array $data {
- * Optional. Data for populating the Message object.
- *
- * @type int|string $user_id
- * 被偷的玩家id
- * @type int|string $pet_id
- * 宠物ID
- * }
- */
- public function __construct($data = NULL) {
- \GPBMetadata\Proto\Game::initOnce();
- parent::__construct($data);
- }
- /**
- *被偷的玩家id
- *
- * Generated from protobuf field <code>int64 user_id = 1;</code>
- * @return int|string
- */
- public function getUserId()
- {
- return $this->user_id;
- }
- /**
- *被偷的玩家id
- *
- * Generated from protobuf field <code>int64 user_id = 1;</code>
- * @param int|string $var
- * @return $this
- */
- public function setUserId($var)
- {
- GPBUtil::checkInt64($var);
- $this->user_id = $var;
- return $this;
- }
- /**
- * 宠物ID
- *
- * Generated from protobuf field <code>int64 pet_id = 2;</code>
- * @return int|string
- */
- public function getPetId()
- {
- return $this->pet_id;
- }
- /**
- * 宠物ID
- *
- * Generated from protobuf field <code>int64 pet_id = 2;</code>
- * @param int|string $var
- * @return $this
- */
- public function setPetId($var)
- {
- GPBUtil::checkInt64($var);
- $this->pet_id = $var;
- return $this;
- }
- }
- // Adding a class alias for backwards compatibility with the previous class name.
- class_alias(RequestPetVegeteal::class, \Uraus\Kku\Request_RequestPetVegeteal::class);
|