proto.api.PreBuyMicroSoftReq
*/
class PreBuyMicroSoftReq extends \Google\Protobuf\Internal\Message
{
/**
* 套餐编号
*
* Generated from protobuf field string package_code = 1;
*/
protected $package_code = '';
/**
* 购买数量
*
* Generated from protobuf field int32 buy_num = 2;
*/
protected $buy_num = 0;
/**
* 支付方式
*
* Generated from protobuf field .proto.api.PAY_METHOD pay_method = 3;
*/
protected $pay_method = 0;
/**
* Constructor.
*
* @param array $data {
* Optional. Data for populating the Message object.
*
* @type string $package_code
* 套餐编号
* @type int $buy_num
* 购买数量
* @type int $pay_method
* 支付方式
* }
*/
public function __construct($data = NULL) {
\GPBMetadata\Api\CityPackageMicroSoft::initOnce();
parent::__construct($data);
}
/**
* 套餐编号
*
* Generated from protobuf field string package_code = 1;
* @return string
*/
public function getPackageCode()
{
return $this->package_code;
}
/**
* 套餐编号
*
* Generated from protobuf field string package_code = 1;
* @param string $var
* @return $this
*/
public function setPackageCode($var)
{
GPBUtil::checkString($var, True);
$this->package_code = $var;
return $this;
}
/**
* 购买数量
*
* Generated from protobuf field int32 buy_num = 2;
* @return int
*/
public function getBuyNum()
{
return $this->buy_num;
}
/**
* 购买数量
*
* Generated from protobuf field int32 buy_num = 2;
* @param int $var
* @return $this
*/
public function setBuyNum($var)
{
GPBUtil::checkInt32($var);
$this->buy_num = $var;
return $this;
}
/**
* 支付方式
*
* Generated from protobuf field .proto.api.PAY_METHOD pay_method = 3;
* @return int
*/
public function getPayMethod()
{
return $this->pay_method;
}
/**
* 支付方式
*
* Generated from protobuf field .proto.api.PAY_METHOD pay_method = 3;
* @param int $var
* @return $this
*/
public function setPayMethod($var)
{
GPBUtil::checkEnum($var, \Proto\Api\PAY_METHOD::class);
$this->pay_method = $var;
return $this;
}
}