123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102 |
- <?php
- namespace Proto\Api;
- use Google\Protobuf\Internal\GPBType;
- use Google\Protobuf\Internal\RepeatedField;
- use Google\Protobuf\Internal\GPBUtil;
- class ShopArg extends \Google\Protobuf\Internal\Message
- {
-
- protected $shop_id = 0;
-
- protected $is_all_level = false;
-
- public function __construct($data = NULL) {
- \GPBMetadata\Api\Common::initOnce();
- parent::__construct($data);
- }
-
- public function getShopId()
- {
- return $this->shop_id;
- }
-
- public function setShopId($var)
- {
- GPBUtil::checkInt32($var);
- $this->shop_id = $var;
- return $this;
- }
-
- public function getIsAllLevel()
- {
- return $this->is_all_level;
- }
-
- public function setIsAllLevel($var)
- {
- GPBUtil::checkBool($var);
- $this->is_all_level = $var;
- return $this;
- }
- }
|