PreBuyMicroSoftReq.php 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  1. <?php
  2. # Generated by the protocol buffer compiler. DO NOT EDIT!
  3. # NO CHECKED-IN PROTOBUF GENCODE
  4. # source: api/CityPackageMicroSoft.proto
  5. namespace Proto\Api;
  6. use Google\Protobuf\Internal\GPBType;
  7. use Google\Protobuf\Internal\RepeatedField;
  8. use Google\Protobuf\Internal\GPBUtil;
  9. /**
  10. * Generated from protobuf message <code>proto.api.PreBuyMicroSoftReq</code>
  11. */
  12. class PreBuyMicroSoftReq extends \Google\Protobuf\Internal\Message
  13. {
  14. /**
  15. * 套餐编号
  16. *
  17. * Generated from protobuf field <code>string package_code = 1;</code>
  18. */
  19. protected $package_code = '';
  20. /**
  21. * 购买数量
  22. *
  23. * Generated from protobuf field <code>int32 buy_num = 2;</code>
  24. */
  25. protected $buy_num = 0;
  26. /**
  27. * 支付方式
  28. *
  29. * Generated from protobuf field <code>.proto.api.PAY_METHOD pay_method = 3;</code>
  30. */
  31. protected $pay_method = 0;
  32. /**
  33. * Constructor.
  34. *
  35. * @param array $data {
  36. * Optional. Data for populating the Message object.
  37. *
  38. * @type string $package_code
  39. * 套餐编号
  40. * @type int $buy_num
  41. * 购买数量
  42. * @type int $pay_method
  43. * 支付方式
  44. * }
  45. */
  46. public function __construct($data = NULL) {
  47. \GPBMetadata\Api\CityPackageMicroSoft::initOnce();
  48. parent::__construct($data);
  49. }
  50. /**
  51. * 套餐编号
  52. *
  53. * Generated from protobuf field <code>string package_code = 1;</code>
  54. * @return string
  55. */
  56. public function getPackageCode()
  57. {
  58. return $this->package_code;
  59. }
  60. /**
  61. * 套餐编号
  62. *
  63. * Generated from protobuf field <code>string package_code = 1;</code>
  64. * @param string $var
  65. * @return $this
  66. */
  67. public function setPackageCode($var)
  68. {
  69. GPBUtil::checkString($var, True);
  70. $this->package_code = $var;
  71. return $this;
  72. }
  73. /**
  74. * 购买数量
  75. *
  76. * Generated from protobuf field <code>int32 buy_num = 2;</code>
  77. * @return int
  78. */
  79. public function getBuyNum()
  80. {
  81. return $this->buy_num;
  82. }
  83. /**
  84. * 购买数量
  85. *
  86. * Generated from protobuf field <code>int32 buy_num = 2;</code>
  87. * @param int $var
  88. * @return $this
  89. */
  90. public function setBuyNum($var)
  91. {
  92. GPBUtil::checkInt32($var);
  93. $this->buy_num = $var;
  94. return $this;
  95. }
  96. /**
  97. * 支付方式
  98. *
  99. * Generated from protobuf field <code>.proto.api.PAY_METHOD pay_method = 3;</code>
  100. * @return int
  101. */
  102. public function getPayMethod()
  103. {
  104. return $this->pay_method;
  105. }
  106. /**
  107. * 支付方式
  108. *
  109. * Generated from protobuf field <code>.proto.api.PAY_METHOD pay_method = 3;</code>
  110. * @param int $var
  111. * @return $this
  112. */
  113. public function setPayMethod($var)
  114. {
  115. GPBUtil::checkEnum($var, \Proto\Api\PAY_METHOD::class);
  116. $this->pay_method = $var;
  117. return $this;
  118. }
  119. }