using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Response
{
///
/// AlipayTradeFastpayRefundQueryResponse.
///
public class AlipayTradeFastpayRefundQueryResponse : AopResponse
{
///
/// 本笔退款对应的退款请求号
///
[JsonProperty("out_request_no")]
public string OutRequestNo { get; set; }
///
/// 创建交易传入的商户订单号
///
[JsonProperty("out_trade_no")]
public string OutTradeNo { get; set; }
///
/// 本次退款请求,对应的退款金额
///
[JsonProperty("refund_amount")]
public string RefundAmount { get; set; }
///
/// 发起退款时,传入的退款原因
///
[JsonProperty("refund_reason")]
public string RefundReason { get; set; }
///
/// 该笔退款所对应的交易的订单金额
///
[JsonProperty("total_amount")]
public string TotalAmount { get; set; }
///
/// 支付宝交易号
///
[JsonProperty("trade_no")]
public string TradeNo { get; set; }
}
}