NewGaoKaoApi/PaymentSDK/AliPay/Response/AlipayTradePageRefundRespon...

36 lines
870 B
C#

using System;
using System.Xml.Serialization;
namespace Aop.Api.Response
{
/// <summary>
/// AlipayTradePageRefundResponse.
/// </summary>
public class AlipayTradePageRefundResponse : AopResponse
{
/// <summary>
/// 退款请求号
/// </summary>
[XmlElement("out_request_no")]
public string OutRequestNo { get; set; }
/// <summary>
/// 商户订单号
/// </summary>
[XmlElement("out_trade_no")]
public string OutTradeNo { get; set; }
/// <summary>
/// 本次退款请求金额
/// </summary>
[XmlElement("refund_amount")]
public string RefundAmount { get; set; }
/// <summary>
/// 支付宝交易号
/// </summary>
[XmlElement("trade_no")]
public string TradeNo { get; set; }
}
}