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