proto.api.GetDeviceCountRes.AreaCount */ class AreaCount extends \Google\Protobuf\Internal\Message { /** * 地区 * * Generated from protobuf field string area = 1; */ protected $area = ''; /** * 电池数量 * * Generated from protobuf field int32 count = 2; */ protected $count = 0; /** * Constructor. * * @param array $data { * Optional. Data for populating the Message object. * * @type string $area * 地区 * @type int $count * 电池数量 * } */ public function __construct($data = NULL) { \GPBMetadata\Api\LargeScreenData::initOnce(); parent::__construct($data); } /** * 地区 * * Generated from protobuf field string area = 1; * @return string */ public function getArea() { return $this->area; } /** * 地区 * * Generated from protobuf field string area = 1; * @param string $var * @return $this */ public function setArea($var) { GPBUtil::checkString($var, True); $this->area = $var; return $this; } /** * 电池数量 * * Generated from protobuf field int32 count = 2; * @return int */ public function getCount() { return $this->count; } /** * 电池数量 * * Generated from protobuf field int32 count = 2; * @param int $var * @return $this */ public function setCount($var) { GPBUtil::checkInt32($var); $this->count = $var; return $this; } }