using Newtonsoft.Json;
using PaySharp.Core.Request;
namespace PaySharp.Alipay.Response
{
public class RefundQueryResponse : BaseResponse
{
///
/// 支付宝交易号
///
public string TradeNo { get; set; }
///
/// 商户订单号
///
public string OutTradeNo { get; set; }
///
/// 本笔退款对应的退款请求号
///
[JsonProperty("out_request_no")]
public string OutRefundNo { get; set; }
///
/// 发起退款时,传入的退款原因
///
public string RefundReason { get; set; }
///
/// 该笔退款所对应的交易的订单金额
///
public double TotalAmount { get; set; }
///
/// 退款金额
///
public double RefundAmount { get; set; }
internal override void Execute(Merchant merchant, Request request)
{
}
}
}