123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100 |
- <?php
- namespace Proto\Api;
- use Google\Protobuf\Internal\GPBType;
- use Google\Protobuf\Internal\RepeatedField;
- use Google\Protobuf\Internal\GPBUtil;
- class SubSelectAreaReq extends \Google\Protobuf\Internal\Message
- {
-
- protected $shop_id = 0;
-
- private $area_ids;
-
- public function __construct($data = NULL) {
- \GPBMetadata\Api\CityPackage::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 getAreaIds()
- {
- return $this->area_ids;
- }
-
- public function setAreaIds($var)
- {
- $arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::STRING);
- $this->area_ids = $arr;
- return $this;
- }
- }
|