123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- using System;
- using System.Xml.Serialization;
- namespace Aop.Api.Response
- {
- /// <summary>
- /// AlipayTradeFastpayRefundQueryResponse.
- /// </summary>
- public class AlipayTradeFastpayRefundQueryResponse : 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("refund_reason")]
- public string RefundReason { get; set; }
- /// <summary>
- /// 该笔退款所对应的交易的订单金额
- /// </summary>
- [XmlElement("total_amount")]
- public string TotalAmount { get; set; }
- /// <summary>
- /// 支付宝交易号
- /// </summary>
- [XmlElement("trade_no")]
- public string TradeNo { get; set; }
- /// <summary>
- /// 退款状态。枚举值:
- /// REFUND_SUCCESS 退款处理成功;
- /// 未返回该字段表示退款请求未收到或者退款失败;
- /// 注:如果退款查询发起时间早于退款时间,或者间隔退款发起时间太短,可能出现退款查询时还没处理成功,后面又处理成功的情况,建议商户在退款发起后间隔10秒以上再发起退款查询请求。
- /// </summary>
- [XmlElement("refund_status")]
- public string RefundStatus { get; set; }
- }
- }
|