NewGaoKaoApi/PaymentSDK/AliPay/Response/HuanxuTradeOrderRefundRespo...

42 lines
1.5 KiB
C#
Raw Blame History

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>
/// HuanxuTradeOrderRefundResponse.
/// </summary>
public class HuanxuTradeOrderRefundResponse : AopResponse
{
/// <summary>
/// 聚合支付的支付渠道,支付宝分配。
/// </summary>
[XmlElement("channel")]
public string Channel { get; set; }
/// <summary>
/// 退款金额,单位为元,精确到小数点后两位,取值范围[0.01,100000000]
/// </summary>
[XmlElement("refund_amount")]
public string RefundAmount { get; set; }
/// <summary>
/// 退款指令id支付宝针对每一笔退款请求生成的唯一退款凭证号
/// </summary>
[XmlElement("refund_id")]
public string RefundId { get; set; }
/// <summary>
/// 退款请求号,对应一笔业务订单下的一次退款请求,不退款请求需保证请求号唯一
/// </summary>
[XmlElement("refund_request_no")]
public string RefundRequestNo { get; set; }
/// <summary>
/// 退款状态,目前支持如下值: SUCCESS退款成功该状态表示该笔退款已成功处理 FAIL退款失败该状态表示该笔退款已失败并且不可重试后续如果要重新退款需要更换退款请求号。
/// </summary>
[XmlElement("refund_status")]
public string RefundStatus { get; set; }
}
}