proto.api.UserApplyRefundListRes
*/
class UserApplyRefundListRes 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;
/**
* 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
* 电池信息
* }
*/
public function __construct($data = NULL) {
\GPBMetadata\Api\Order::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;
}
}