proto.api.SubRemoveAreaReq
*/
class SubRemoveAreaReq extends \Google\Protobuf\Internal\Message
{
/**
* 门店ID
*
* Generated from protobuf field int32 shop_id = 1;
*/
protected $shop_id = 0;
/**
* 地区area_ids
*
* Generated from protobuf field repeated string area_ids = 2;
*/
private $area_ids;
/**
* Constructor.
*
* @param array $data {
* Optional. Data for populating the Message object.
*
* @type int $shop_id
* 门店ID
* @type array|\Google\Protobuf\Internal\RepeatedField $area_ids
* 地区area_ids
* }
*/
public function __construct($data = NULL) {
\GPBMetadata\Api\CityPackage::initOnce();
parent::__construct($data);
}
/**
* 门店ID
*
* Generated from protobuf field int32 shop_id = 1;
* @return int
*/
public function getShopId()
{
return $this->shop_id;
}
/**
* 门店ID
*
* Generated from protobuf field int32 shop_id = 1;
* @param int $var
* @return $this
*/
public function setShopId($var)
{
GPBUtil::checkInt32($var);
$this->shop_id = $var;
return $this;
}
/**
* 地区area_ids
*
* Generated from protobuf field repeated string area_ids = 2;
* @return \Google\Protobuf\Internal\RepeatedField
*/
public function getAreaIds()
{
return $this->area_ids;
}
/**
* 地区area_ids
*
* Generated from protobuf field repeated string area_ids = 2;
* @param array|\Google\Protobuf\Internal\RepeatedField $var
* @return $this
*/
public function setAreaIds($var)
{
$arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::STRING);
$this->area_ids = $arr;
return $this;
}
}