proto.api.CloseAreaReq
*/
class CloseAreaReq extends \Google\Protobuf\Internal\Message
{
/**
* 地区CODE列表
*
* Generated from protobuf field repeated string area_ids = 1;
*/
private $area_ids;
/**
* 是否子门店操作关闭 默认false
*
* Generated from protobuf field bool is_child_opt = 3;
*/
protected $is_child_opt = false;
/**
* Constructor.
*
* @param array $data {
* Optional. Data for populating the Message object.
*
* @type array|\Google\Protobuf\Internal\RepeatedField $area_ids
* 地区CODE列表
* @type bool $is_child_opt
* 是否子门店操作关闭 默认false
* }
*/
public function __construct($data = NULL) {
\GPBMetadata\Api\CityPackage::initOnce();
parent::__construct($data);
}
/**
* 地区CODE列表
*
* Generated from protobuf field repeated string area_ids = 1;
* @return \Google\Protobuf\Internal\RepeatedField
*/
public function getAreaIds()
{
return $this->area_ids;
}
/**
* 地区CODE列表
*
* Generated from protobuf field repeated string area_ids = 1;
* @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;
}
/**
* 是否子门店操作关闭 默认false
*
* Generated from protobuf field bool is_child_opt = 3;
* @return bool
*/
public function getIsChildOpt()
{
return $this->is_child_opt;
}
/**
* 是否子门店操作关闭 默认false
*
* Generated from protobuf field bool is_child_opt = 3;
* @param bool $var
* @return $this
*/
public function setIsChildOpt($var)
{
GPBUtil::checkBool($var);
$this->is_child_opt = $var;
return $this;
}
}