proto.api.GetDeviceCountAreaReq */ class GetDeviceCountAreaReq extends \Google\Protobuf\Internal\Message { /** * 省份的code * * Generated from protobuf field string province_code = 1; */ protected $province_code = ''; /** * 城市的code * * Generated from protobuf field string city_code = 2; */ protected $city_code = ''; /** * Constructor. * * @param array $data { * Optional. Data for populating the Message object. * * @type string $province_code * 省份的code * @type string $city_code * 城市的code * } */ public function __construct($data = NULL) { \GPBMetadata\Api\LargeScreenData::initOnce(); parent::__construct($data); } /** * 省份的code * * Generated from protobuf field string province_code = 1; * @return string */ public function getProvinceCode() { return $this->province_code; } /** * 省份的code * * Generated from protobuf field string province_code = 1; * @param string $var * @return $this */ public function setProvinceCode($var) { GPBUtil::checkString($var, True); $this->province_code = $var; return $this; } /** * 城市的code * * Generated from protobuf field string city_code = 2; * @return string */ public function getCityCode() { return $this->city_code; } /** * 城市的code * * Generated from protobuf field string city_code = 2; * @param string $var * @return $this */ public function setCityCode($var) { GPBUtil::checkString($var, True); $this->city_code = $var; return $this; } }