NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayEcoEduKtBillingModify...

79 lines
2.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.Domain
{
/// <summary>
/// AlipayEcoEduKtBillingModifyModel Data Structure.
/// </summary>
[Serializable]
public class AlipayEcoEduKtBillingModifyModel : AopObject
{
/// <summary>
/// 退款时支付宝返回的用户的登录id
/// </summary>
[XmlElement("buyer_logon_id")]
public string BuyerLogonId { get; set; }
/// <summary>
/// 支付宝返回的买家支付宝用户id
/// </summary>
[XmlElement("buyer_user_id")]
public string BuyerUserId { get; set; }
/// <summary>
/// 本次退款是否发生了资金变化
/// </summary>
[XmlElement("fund_change")]
public string FundChange { get; set; }
/// <summary>
/// 支付宝返回的退款时间,而不是商户退款申请的时间
/// </summary>
[XmlElement("gmt_refund")]
public string GmtRefund { get; set; }
/// <summary>
/// 标识一次退款请求,同一笔交易多次退款需要保证唯一,如需部分退款,则此参数必传
/// </summary>
[XmlElement("out_request_no")]
public string OutRequestNo { get; set; }
/// <summary>
/// isv系统的订单号
/// </summary>
[XmlElement("out_trade_no")]
public string OutTradeNo { get; set; }
/// <summary>
/// 需要退款的金额,该金额不能大于订单金额,单位为元,支持两位小数
/// </summary>
[XmlElement("refund_amount")]
public string RefundAmount { get; set; }
/// <summary>
/// 支付宝返回的退款资金渠道json格式字符串
/// </summary>
[XmlElement("refund_detail_item_list")]
public string RefundDetailItemList { get; set; }
/// <summary>
/// 退款原因,商家根据客户实际退款原因填写
/// </summary>
[XmlElement("refund_reason")]
public string RefundReason { get; set; }
/// <summary>
/// 状态1:缴费成功2:关闭账单3、退费 如果为退款状态,需要填写以下字段,字段都是支付宝退款返回的必填参数
/// </summary>
[XmlElement("status")]
public string Status { get; set; }
/// <summary>
/// 支付宝返回的交易号
/// </summary>
[XmlElement("trade_no")]
public string TradeNo { get; set; }
}
}