CancelResponse.cs 847 B

123456789101112131415161718192021222324252627282930313233
  1. using PaySharp.Core.Request;
  2. namespace PaySharp.Alipay.Response
  3. {
  4. public class CancelResponse : BaseResponse
  5. {
  6. /// <summary>
  7. /// 支付宝交易号
  8. /// </summary>
  9. public string TradeNo { get; set; }
  10. /// <summary>
  11. /// 商户订单号
  12. /// </summary>
  13. public string OutTradeNo { get; set; }
  14. /// <summary>
  15. /// 是否需要重试
  16. /// </summary>
  17. public string RetryFlag { get; set; }
  18. /// <summary>
  19. /// 本次撤销触发的交易动作
  20. /// close:关闭交易,无退款
  21. /// refund:产生了退款
  22. /// </summary>
  23. public string Action { get; set; }
  24. internal override void Execute<TModel, TResponse>(Merchant merchant, Request<TModel, TResponse> request)
  25. {
  26. }
  27. }
  28. }