proto.api.CarModelDeleteReq
*/
class CarModelDeleteReq extends \Google\Protobuf\Internal\Message
{
/**
* 车辆型号编号数组列表
*
* Generated from protobuf field repeated string codes = 1;
*/
private $codes;
/**
* Constructor.
*
* @param array $data {
* Optional. Data for populating the Message object.
*
* @type array|\Google\Protobuf\Internal\RepeatedField $codes
* 车辆型号编号数组列表
* }
*/
public function __construct($data = NULL) {
\GPBMetadata\Api\CityPackage::initOnce();
parent::__construct($data);
}
/**
* 车辆型号编号数组列表
*
* Generated from protobuf field repeated string codes = 1;
* @return \Google\Protobuf\Internal\RepeatedField
*/
public function getCodes()
{
return $this->codes;
}
/**
* 车辆型号编号数组列表
*
* Generated from protobuf field repeated string codes = 1;
* @param array|\Google\Protobuf\Internal\RepeatedField $var
* @return $this
*/
public function setCodes($var)
{
$arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::STRING);
$this->codes = $arr;
return $this;
}
}