123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232 |
- <?php
- # Generated by the protocol buffer compiler. DO NOT EDIT!
- # NO CHECKED-IN PROTOBUF GENCODE
- # source: api/OrderExchange.proto
- namespace Proto\Api\ApplyRefundListRes;
- use Google\Protobuf\Internal\GPBType;
- use Google\Protobuf\Internal\RepeatedField;
- use Google\Protobuf\Internal\GPBUtil;
- /**
- * Generated from protobuf message <code>proto.api.ApplyRefundListRes.Item</code>
- */
- class Item extends \Google\Protobuf\Internal\Message
- {
- /**
- * 订单信息
- *
- * Generated from protobuf field <code>.proto.api.EntExchangeOrder order_info = 1;</code>
- */
- protected $order_info = null;
- /**
- * 门店信息
- *
- * Generated from protobuf field <code>.proto.api.EntAdmin shop_info = 2;</code>
- */
- protected $shop_info = null;
- /**
- * 电池信息
- *
- * Generated from protobuf field <code>.proto.api.EntBattery battery_info = 3;</code>
- */
- protected $battery_info = null;
- /**
- * 申请退款id
- *
- * Generated from protobuf field <code>int32 refund_id = 4;</code>
- */
- protected $refund_id = 0;
- /**
- * 申请退款状态
- *
- * Generated from protobuf field <code>.proto.api.APPLY_REFUND_STATUS refund_status = 5;</code>
- */
- protected $refund_status = 0;
- /**
- * Constructor.
- *
- * @param array $data {
- * Optional. Data for populating the Message object.
- *
- * @type \Proto\Api\EntExchangeOrder $order_info
- * 订单信息
- * @type \Proto\Api\EntAdmin $shop_info
- * 门店信息
- * @type \Proto\Api\EntBattery $battery_info
- * 电池信息
- * @type int $refund_id
- * 申请退款id
- * @type int $refund_status
- * 申请退款状态
- * }
- */
- public function __construct($data = NULL) {
- \GPBMetadata\Api\OrderExchange::initOnce();
- parent::__construct($data);
- }
- /**
- * 订单信息
- *
- * Generated from protobuf field <code>.proto.api.EntExchangeOrder order_info = 1;</code>
- * @return \Proto\Api\EntExchangeOrder|null
- */
- public function getOrderInfo()
- {
- return $this->order_info;
- }
- public function hasOrderInfo()
- {
- return isset($this->order_info);
- }
- public function clearOrderInfo()
- {
- unset($this->order_info);
- }
- /**
- * 订单信息
- *
- * Generated from protobuf field <code>.proto.api.EntExchangeOrder order_info = 1;</code>
- * @param \Proto\Api\EntExchangeOrder $var
- * @return $this
- */
- public function setOrderInfo($var)
- {
- GPBUtil::checkMessage($var, \Proto\Api\EntExchangeOrder::class);
- $this->order_info = $var;
- return $this;
- }
- /**
- * 门店信息
- *
- * Generated from protobuf field <code>.proto.api.EntAdmin shop_info = 2;</code>
- * @return \Proto\Api\EntAdmin|null
- */
- public function getShopInfo()
- {
- return $this->shop_info;
- }
- public function hasShopInfo()
- {
- return isset($this->shop_info);
- }
- public function clearShopInfo()
- {
- unset($this->shop_info);
- }
- /**
- * 门店信息
- *
- * Generated from protobuf field <code>.proto.api.EntAdmin shop_info = 2;</code>
- * @param \Proto\Api\EntAdmin $var
- * @return $this
- */
- public function setShopInfo($var)
- {
- GPBUtil::checkMessage($var, \Proto\Api\EntAdmin::class);
- $this->shop_info = $var;
- return $this;
- }
- /**
- * 电池信息
- *
- * Generated from protobuf field <code>.proto.api.EntBattery battery_info = 3;</code>
- * @return \Proto\Api\EntBattery|null
- */
- public function getBatteryInfo()
- {
- return $this->battery_info;
- }
- public function hasBatteryInfo()
- {
- return isset($this->battery_info);
- }
- public function clearBatteryInfo()
- {
- unset($this->battery_info);
- }
- /**
- * 电池信息
- *
- * Generated from protobuf field <code>.proto.api.EntBattery battery_info = 3;</code>
- * @param \Proto\Api\EntBattery $var
- * @return $this
- */
- public function setBatteryInfo($var)
- {
- GPBUtil::checkMessage($var, \Proto\Api\EntBattery::class);
- $this->battery_info = $var;
- return $this;
- }
- /**
- * 申请退款id
- *
- * Generated from protobuf field <code>int32 refund_id = 4;</code>
- * @return int
- */
- public function getRefundId()
- {
- return $this->refund_id;
- }
- /**
- * 申请退款id
- *
- * Generated from protobuf field <code>int32 refund_id = 4;</code>
- * @param int $var
- * @return $this
- */
- public function setRefundId($var)
- {
- GPBUtil::checkInt32($var);
- $this->refund_id = $var;
- return $this;
- }
- /**
- * 申请退款状态
- *
- * Generated from protobuf field <code>.proto.api.APPLY_REFUND_STATUS refund_status = 5;</code>
- * @return int
- */
- public function getRefundStatus()
- {
- return $this->refund_status;
- }
- /**
- * 申请退款状态
- *
- * Generated from protobuf field <code>.proto.api.APPLY_REFUND_STATUS refund_status = 5;</code>
- * @param int $var
- * @return $this
- */
- public function setRefundStatus($var)
- {
- GPBUtil::checkEnum($var, \Proto\Api\APPLY_REFUND_STATUS::class);
- $this->refund_status = $var;
- return $this;
- }
- }
|