CityPackageEnt.php 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234
  1. <?php
  2. # Generated by the protocol buffer compiler. DO NOT EDIT!
  3. # NO CHECKED-IN PROTOBUF GENCODE
  4. # source: api/EntCityPackage.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. * 城市套餐的信息
  11. *
  12. * Generated from protobuf message <code>proto.api.CityPackageEnt</code>
  13. */
  14. class CityPackageEnt extends \Google\Protobuf\Internal\Message
  15. {
  16. /**
  17. * 套餐信息
  18. *
  19. * Generated from protobuf field <code>.proto.api.EntPackage package_info = 1;</code>
  20. */
  21. protected $package_info = null;
  22. /**
  23. * 套餐分类 1租电套餐 2车电一体 3租车套餐
  24. *
  25. * Generated from protobuf field <code>.proto.api.DEVICE_USE_TYPE package_category = 2;</code>
  26. */
  27. protected $package_category = 0;
  28. /**
  29. * 支持的区县ID列表
  30. *
  31. * Generated from protobuf field <code>repeated .proto.api.AreaEnt area_list = 3;</code>
  32. */
  33. private $area_list;
  34. /**
  35. * 电池标签信息
  36. *
  37. * Generated from protobuf field <code>.proto.api.EntTag battery_tag_info = 4;</code>
  38. */
  39. protected $battery_tag_info = null;
  40. /**
  41. * 车型信息
  42. *
  43. * Generated from protobuf field <code>.proto.api.CarModelEnt car_model_info = 5;</code>
  44. */
  45. protected $car_model_info = null;
  46. /**
  47. * Constructor.
  48. *
  49. * @param array $data {
  50. * Optional. Data for populating the Message object.
  51. *
  52. * @type \Proto\Api\EntPackage $package_info
  53. * 套餐信息
  54. * @type int $package_category
  55. * 套餐分类 1租电套餐 2车电一体 3租车套餐
  56. * @type array<\Proto\Api\AreaEnt>|\Google\Protobuf\Internal\RepeatedField $area_list
  57. * 支持的区县ID列表
  58. * @type \Proto\Api\EntTag $battery_tag_info
  59. * 电池标签信息
  60. * @type \Proto\Api\CarModelEnt $car_model_info
  61. * 车型信息
  62. * }
  63. */
  64. public function __construct($data = NULL) {
  65. \GPBMetadata\Api\EntCityPackage::initOnce();
  66. parent::__construct($data);
  67. }
  68. /**
  69. * 套餐信息
  70. *
  71. * Generated from protobuf field <code>.proto.api.EntPackage package_info = 1;</code>
  72. * @return \Proto\Api\EntPackage|null
  73. */
  74. public function getPackageInfo()
  75. {
  76. return $this->package_info;
  77. }
  78. public function hasPackageInfo()
  79. {
  80. return isset($this->package_info);
  81. }
  82. public function clearPackageInfo()
  83. {
  84. unset($this->package_info);
  85. }
  86. /**
  87. * 套餐信息
  88. *
  89. * Generated from protobuf field <code>.proto.api.EntPackage package_info = 1;</code>
  90. * @param \Proto\Api\EntPackage $var
  91. * @return $this
  92. */
  93. public function setPackageInfo($var)
  94. {
  95. GPBUtil::checkMessage($var, \Proto\Api\EntPackage::class);
  96. $this->package_info = $var;
  97. return $this;
  98. }
  99. /**
  100. * 套餐分类 1租电套餐 2车电一体 3租车套餐
  101. *
  102. * Generated from protobuf field <code>.proto.api.DEVICE_USE_TYPE package_category = 2;</code>
  103. * @return int
  104. */
  105. public function getPackageCategory()
  106. {
  107. return $this->package_category;
  108. }
  109. /**
  110. * 套餐分类 1租电套餐 2车电一体 3租车套餐
  111. *
  112. * Generated from protobuf field <code>.proto.api.DEVICE_USE_TYPE package_category = 2;</code>
  113. * @param int $var
  114. * @return $this
  115. */
  116. public function setPackageCategory($var)
  117. {
  118. GPBUtil::checkEnum($var, \Proto\Api\DEVICE_USE_TYPE::class);
  119. $this->package_category = $var;
  120. return $this;
  121. }
  122. /**
  123. * 支持的区县ID列表
  124. *
  125. * Generated from protobuf field <code>repeated .proto.api.AreaEnt area_list = 3;</code>
  126. * @return \Google\Protobuf\Internal\RepeatedField
  127. */
  128. public function getAreaList()
  129. {
  130. return $this->area_list;
  131. }
  132. /**
  133. * 支持的区县ID列表
  134. *
  135. * Generated from protobuf field <code>repeated .proto.api.AreaEnt area_list = 3;</code>
  136. * @param array<\Proto\Api\AreaEnt>|\Google\Protobuf\Internal\RepeatedField $var
  137. * @return $this
  138. */
  139. public function setAreaList($var)
  140. {
  141. $arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Proto\Api\AreaEnt::class);
  142. $this->area_list = $arr;
  143. return $this;
  144. }
  145. /**
  146. * 电池标签信息
  147. *
  148. * Generated from protobuf field <code>.proto.api.EntTag battery_tag_info = 4;</code>
  149. * @return \Proto\Api\EntTag|null
  150. */
  151. public function getBatteryTagInfo()
  152. {
  153. return $this->battery_tag_info;
  154. }
  155. public function hasBatteryTagInfo()
  156. {
  157. return isset($this->battery_tag_info);
  158. }
  159. public function clearBatteryTagInfo()
  160. {
  161. unset($this->battery_tag_info);
  162. }
  163. /**
  164. * 电池标签信息
  165. *
  166. * Generated from protobuf field <code>.proto.api.EntTag battery_tag_info = 4;</code>
  167. * @param \Proto\Api\EntTag $var
  168. * @return $this
  169. */
  170. public function setBatteryTagInfo($var)
  171. {
  172. GPBUtil::checkMessage($var, \Proto\Api\EntTag::class);
  173. $this->battery_tag_info = $var;
  174. return $this;
  175. }
  176. /**
  177. * 车型信息
  178. *
  179. * Generated from protobuf field <code>.proto.api.CarModelEnt car_model_info = 5;</code>
  180. * @return \Proto\Api\CarModelEnt|null
  181. */
  182. public function getCarModelInfo()
  183. {
  184. return $this->car_model_info;
  185. }
  186. public function hasCarModelInfo()
  187. {
  188. return isset($this->car_model_info);
  189. }
  190. public function clearCarModelInfo()
  191. {
  192. unset($this->car_model_info);
  193. }
  194. /**
  195. * 车型信息
  196. *
  197. * Generated from protobuf field <code>.proto.api.CarModelEnt car_model_info = 5;</code>
  198. * @param \Proto\Api\CarModelEnt $var
  199. * @return $this
  200. */
  201. public function setCarModelInfo($var)
  202. {
  203. GPBUtil::checkMessage($var, \Proto\Api\CarModelEnt::class);
  204. $this->car_model_info = $var;
  205. return $this;
  206. }
  207. }