1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- <?php
- # Generated by the protocol buffer compiler. DO NOT EDIT!
- # NO CHECKED-IN PROTOBUF GENCODE
- # source: api/CityPackageMicroSoft.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.DetailPackageMicroSoftReq</code>
- */
- class DetailPackageMicroSoftReq extends \Google\Protobuf\Internal\Message
- {
- /**
- * Generated from protobuf field <code>repeated string package_code = 1;</code>
- */
- private $package_code;
- /**
- * Constructor.
- *
- * @param array $data {
- * Optional. Data for populating the Message object.
- *
- * @type array<string>|\Google\Protobuf\Internal\RepeatedField $package_code
- * }
- */
- public function __construct($data = NULL) {
- \GPBMetadata\Api\CityPackageMicroSoft::initOnce();
- parent::__construct($data);
- }
- /**
- * Generated from protobuf field <code>repeated string package_code = 1;</code>
- * @return \Google\Protobuf\Internal\RepeatedField
- */
- public function getPackageCode()
- {
- return $this->package_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;
- }
- }
|