OrderListMicroSoftReq.php 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154
  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.OrderListMicroSoftReq</code>
  11. */
  12. class OrderListMicroSoftReq extends \Google\Protobuf\Internal\Message
  13. {
  14. /**
  15. * 分页参数
  16. *
  17. * Generated from protobuf field <code>.proto.api.PageArg page_arg = 1;</code>
  18. */
  19. protected $page_arg = null;
  20. /**
  21. * 门店筛选参数
  22. *
  23. * Generated from protobuf field <code>.proto.api.ShopArg shop_arg = 2;</code>
  24. */
  25. protected $shop_arg = null;
  26. /**
  27. * 订单类型
  28. *
  29. * Generated from protobuf field <code>.proto.api.DEVICE_USE_TYPE order_type = 3;</code>
  30. */
  31. protected $order_type = 0;
  32. /**
  33. * Constructor.
  34. *
  35. * @param array $data {
  36. * Optional. Data for populating the Message object.
  37. *
  38. * @type \Proto\Api\PageArg $page_arg
  39. * 分页参数
  40. * @type \Proto\Api\ShopArg $shop_arg
  41. * 门店筛选参数
  42. * @type int $order_type
  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>.proto.api.PageArg page_arg = 1;</code>
  54. * @return \Proto\Api\PageArg|null
  55. */
  56. public function getPageArg()
  57. {
  58. return $this->page_arg;
  59. }
  60. public function hasPageArg()
  61. {
  62. return isset($this->page_arg);
  63. }
  64. public function clearPageArg()
  65. {
  66. unset($this->page_arg);
  67. }
  68. /**
  69. * 分页参数
  70. *
  71. * Generated from protobuf field <code>.proto.api.PageArg page_arg = 1;</code>
  72. * @param \Proto\Api\PageArg $var
  73. * @return $this
  74. */
  75. public function setPageArg($var)
  76. {
  77. GPBUtil::checkMessage($var, \Proto\Api\PageArg::class);
  78. $this->page_arg = $var;
  79. return $this;
  80. }
  81. /**
  82. * 门店筛选参数
  83. *
  84. * Generated from protobuf field <code>.proto.api.ShopArg shop_arg = 2;</code>
  85. * @return \Proto\Api\ShopArg|null
  86. */
  87. public function getShopArg()
  88. {
  89. return $this->shop_arg;
  90. }
  91. public function hasShopArg()
  92. {
  93. return isset($this->shop_arg);
  94. }
  95. public function clearShopArg()
  96. {
  97. unset($this->shop_arg);
  98. }
  99. /**
  100. * 门店筛选参数
  101. *
  102. * Generated from protobuf field <code>.proto.api.ShopArg shop_arg = 2;</code>
  103. * @param \Proto\Api\ShopArg $var
  104. * @return $this
  105. */
  106. public function setShopArg($var)
  107. {
  108. GPBUtil::checkMessage($var, \Proto\Api\ShopArg::class);
  109. $this->shop_arg = $var;
  110. return $this;
  111. }
  112. /**
  113. * 订单类型
  114. *
  115. * Generated from protobuf field <code>.proto.api.DEVICE_USE_TYPE order_type = 3;</code>
  116. * @return int
  117. */
  118. public function getOrderType()
  119. {
  120. return $this->order_type;
  121. }
  122. /**
  123. * 订单类型
  124. *
  125. * Generated from protobuf field <code>.proto.api.DEVICE_USE_TYPE order_type = 3;</code>
  126. * @param int $var
  127. * @return $this
  128. */
  129. public function setOrderType($var)
  130. {
  131. GPBUtil::checkEnum($var, \Proto\Api\DEVICE_USE_TYPE::class);
  132. $this->order_type = $var;
  133. return $this;
  134. }
  135. }