proto.api.SubShopListRes
*/
class SubShopListRes extends \Google\Protobuf\Internal\Message
{
/**
* 总条数
*
* Generated from protobuf field int32 total = 1;
*/
protected $total = 0;
/**
* 门店列表
*
* Generated from protobuf field repeated .proto.api.SubShopListRes.SubShopListResItem list = 2;
*/
private $list;
/**
* Constructor.
*
* @param array $data {
* Optional. Data for populating the Message object.
*
* @type int $total
* 总条数
* @type array<\Proto\Api\SubShopListRes\SubShopListResItem>|\Google\Protobuf\Internal\RepeatedField $list
* 门店列表
* }
*/
public function __construct($data = NULL) {
\GPBMetadata\Api\CityPackage::initOnce();
parent::__construct($data);
}
/**
* 总条数
*
* Generated from protobuf field int32 total = 1;
* @return int
*/
public function getTotal()
{
return $this->total;
}
/**
* 总条数
*
* Generated from protobuf field int32 total = 1;
* @param int $var
* @return $this
*/
public function setTotal($var)
{
GPBUtil::checkInt32($var);
$this->total = $var;
return $this;
}
/**
* 门店列表
*
* Generated from protobuf field repeated .proto.api.SubShopListRes.SubShopListResItem list = 2;
* @return \Google\Protobuf\Internal\RepeatedField
*/
public function getList()
{
return $this->list;
}
/**
* 门店列表
*
* Generated from protobuf field repeated .proto.api.SubShopListRes.SubShopListResItem list = 2;
* @param array<\Proto\Api\SubShopListRes\SubShopListResItem>|\Google\Protobuf\Internal\RepeatedField $var
* @return $this
*/
public function setList($var)
{
$arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Proto\Api\SubShopListRes\SubShopListResItem::class);
$this->list = $arr;
return $this;
}
}