using System; using System.Xml.Serialization; namespace Aop.Api.Response { /// /// AlipayTradeCancelResponse. /// public class AlipayTradeCancelResponse : AopResponse { /// /// 本次撤销触发的交易动作 close:关闭交易,无退款 refund:产生了退款 /// [XmlElement("action")] public string Action { get; set; } /// /// 商户订单号 /// [XmlElement("out_trade_no")] public string OutTradeNo { get; set; } /// /// 是否需要重试 /// [XmlElement("retry_flag")] public string RetryFlag { get; set; } /// /// 支付宝交易号 /// [XmlElement("trade_no")] public string TradeNo { get; set; } } }