proto.api.ApplyRefundListRes.Item
*/
class Item extends \Google\Protobuf\Internal\Message
{
/**
* 订单信息
*
* Generated from protobuf field .proto.api.EntExchangeOrder order_info = 1;
*/
protected $order_info = null;
/**
* 门店信息
*
* Generated from protobuf field .proto.api.EntAdmin shop_info = 2;
*/
protected $shop_info = null;
/**
* 电池信息
*
* Generated from protobuf field .proto.api.EntBattery battery_info = 3;
*/
protected $battery_info = null;
/**
* 申请退款id
*
* Generated from protobuf field int32 refund_id = 4;
*/
protected $refund_id = 0;
/**
* 申请退款状态
*
* Generated from protobuf field .proto.api.APPLY_REFUND_STATUS refund_status = 5;
*/
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 .proto.api.EntExchangeOrder order_info = 1;
* @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 .proto.api.EntExchangeOrder order_info = 1;
* @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 .proto.api.EntAdmin shop_info = 2;
* @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 .proto.api.EntAdmin shop_info = 2;
* @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 .proto.api.EntBattery battery_info = 3;
* @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 .proto.api.EntBattery battery_info = 3;
* @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 int32 refund_id = 4;
* @return int
*/
public function getRefundId()
{
return $this->refund_id;
}
/**
* 申请退款id
*
* Generated from protobuf field int32 refund_id = 4;
* @param int $var
* @return $this
*/
public function setRefundId($var)
{
GPBUtil::checkInt32($var);
$this->refund_id = $var;
return $this;
}
/**
* 申请退款状态
*
* Generated from protobuf field .proto.api.APPLY_REFUND_STATUS refund_status = 5;
* @return int
*/
public function getRefundStatus()
{
return $this->refund_status;
}
/**
* 申请退款状态
*
* Generated from protobuf field .proto.api.APPLY_REFUND_STATUS refund_status = 5;
* @param int $var
* @return $this
*/
public function setRefundStatus($var)
{
GPBUtil::checkEnum($var, \Proto\Api\APPLY_REFUND_STATUS::class);
$this->refund_status = $var;
return $this;
}
}