48 lines
1.4 KiB
C#
48 lines
1.4 KiB
C#
using System;
|
||
using System.Xml.Serialization;
|
||
|
||
namespace Aop.Api.Response
|
||
{
|
||
/// <summary>
|
||
/// AlipayFundTransRefundResponse.
|
||
/// </summary>
|
||
public class AlipayFundTransRefundResponse : AopResponse
|
||
{
|
||
/// <summary>
|
||
/// 发红包时支付宝返回的支付宝订单号order_id。
|
||
/// </summary>
|
||
[XmlElement("order_id")]
|
||
public string OrderId { get; set; }
|
||
|
||
/// <summary>
|
||
/// 标识一次资金退回请求,一笔资金退回失败后重新提交,要采用原来的资金退回单号。总退款金额不能超过用户实际支付金额。
|
||
/// </summary>
|
||
[XmlElement("out_request_no")]
|
||
public string OutRequestNo { get; set; }
|
||
|
||
/// <summary>
|
||
/// 本次退款的金额,单位为元,支持两位小数
|
||
/// </summary>
|
||
[XmlElement("refund_amount")]
|
||
public string RefundAmount { get; set; }
|
||
|
||
/// <summary>
|
||
/// 退款资金退回
|
||
/// </summary>
|
||
[XmlElement("refund_date")]
|
||
public string RefundDate { get; set; }
|
||
|
||
/// <summary>
|
||
/// 退款的支付宝系统内部单据id
|
||
/// </summary>
|
||
[XmlElement("refund_order_id")]
|
||
public string RefundOrderId { get; set; }
|
||
|
||
/// <summary>
|
||
/// SUCCESS:退款成功
|
||
/// </summary>
|
||
[XmlElement("status")]
|
||
public string Status { get; set; }
|
||
}
|
||
}
|