You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

36 lines
914 B
C#

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

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