1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- <?php
- namespace Proto\Api;
- use Google\Protobuf\Internal\GPBType;
- use Google\Protobuf\Internal\RepeatedField;
- use Google\Protobuf\Internal\GPBUtil;
- class DetailPackageMicroSoftReq extends \Google\Protobuf\Internal\Message
- {
-
- private $package_code;
-
- public function __construct($data = NULL) {
- \GPBMetadata\Api\CityPackageMicroSoft::initOnce();
- parent::__construct($data);
- }
-
- public function getPackageCode()
- {
- return $this->package_code;
- }
-
- public function setPackageCode($var)
- {
- $arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::STRING);
- $this->package_code = $arr;
- return $this;
- }
- }
|