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