123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100 |
- <?php
- # Generated by the protocol buffer compiler. DO NOT EDIT!
- # NO CHECKED-IN PROTOBUF GENCODE
- # source: api/CityPackage.proto
- namespace Proto\Api;
- use Google\Protobuf\Internal\GPBType;
- use Google\Protobuf\Internal\RepeatedField;
- use Google\Protobuf\Internal\GPBUtil;
- /**
- * Generated from protobuf message <code>proto.api.ChangeRecommendReq</code>
- */
- class ChangeRecommendReq extends \Google\Protobuf\Internal\Message
- {
- /**
- * 套餐code
- *
- * Generated from protobuf field <code>repeated string package_code = 1;</code>
- */
- private $package_code;
- /**
- * 是否推荐
- *
- * Generated from protobuf field <code>.proto.api.YES_NO is_recommend = 2;</code>
- */
- protected $is_recommend = 0;
- /**
- * Constructor.
- *
- * @param array $data {
- * Optional. Data for populating the Message object.
- *
- * @type array<string>|\Google\Protobuf\Internal\RepeatedField $package_code
- * 套餐code
- * @type int $is_recommend
- * 是否推荐
- * }
- */
- public function __construct($data = NULL) {
- \GPBMetadata\Api\CityPackage::initOnce();
- parent::__construct($data);
- }
- /**
- * 套餐code
- *
- * Generated from protobuf field <code>repeated string package_code = 1;</code>
- * @return \Google\Protobuf\Internal\RepeatedField
- */
- public function getPackageCode()
- {
- return $this->package_code;
- }
- /**
- * 套餐code
- *
- * Generated from protobuf field <code>repeated string package_code = 1;</code>
- * @param array<string>|\Google\Protobuf\Internal\RepeatedField $var
- * @return $this
- */
- public function setPackageCode($var)
- {
- $arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::STRING);
- $this->package_code = $arr;
- return $this;
- }
- /**
- * 是否推荐
- *
- * Generated from protobuf field <code>.proto.api.YES_NO is_recommend = 2;</code>
- * @return int
- */
- public function getIsRecommend()
- {
- return $this->is_recommend;
- }
- /**
- * 是否推荐
- *
- * Generated from protobuf field <code>.proto.api.YES_NO is_recommend = 2;</code>
- * @param int $var
- * @return $this
- */
- public function setIsRecommend($var)
- {
- GPBUtil::checkEnum($var, \Proto\Api\YES_NO::class);
- $this->is_recommend = $var;
- return $this;
- }
- }
|