123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164 |
- <?php
- namespace Proto\Api;
- use Google\Protobuf\Internal\GPBType;
- use Google\Protobuf\Internal\RepeatedField;
- use Google\Protobuf\Internal\GPBUtil;
- class UserApplyRefundListRes extends \Google\Protobuf\Internal\Message
- {
-
- protected $order_info = null;
-
- protected $shop_info = null;
-
- protected $battery_info = null;
-
- public function __construct($data = NULL) {
- \GPBMetadata\Api\Order::initOnce();
- parent::__construct($data);
- }
-
- public function getOrderInfo()
- {
- return $this->order_info;
- }
- public function hasOrderInfo()
- {
- return isset($this->order_info);
- }
- public function clearOrderInfo()
- {
- unset($this->order_info);
- }
-
- public function setOrderInfo($var)
- {
- GPBUtil::checkMessage($var, \Proto\Api\EntExchangeOrder::class);
- $this->order_info = $var;
- return $this;
- }
-
- public function getShopInfo()
- {
- return $this->shop_info;
- }
- public function hasShopInfo()
- {
- return isset($this->shop_info);
- }
- public function clearShopInfo()
- {
- unset($this->shop_info);
- }
-
- public function setShopInfo($var)
- {
- GPBUtil::checkMessage($var, \Proto\Api\EntAdmin::class);
- $this->shop_info = $var;
- return $this;
- }
-
- public function getBatteryInfo()
- {
- return $this->battery_info;
- }
- public function hasBatteryInfo()
- {
- return isset($this->battery_info);
- }
- public function clearBatteryInfo()
- {
- unset($this->battery_info);
- }
-
- public function setBatteryInfo($var)
- {
- GPBUtil::checkMessage($var, \Proto\Api\EntBattery::class);
- $this->battery_info = $var;
- return $this;
- }
- }
|