NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayBusinessPaymenthubRef...

49 lines
1.5 KiB
C#
Raw Permalink 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>
/// AlipayBusinessPaymenthubRefundModel Data Structure.
/// </summary>
[Serializable]
public class AlipayBusinessPaymenthubRefundModel : AopObject
{
/// <summary>
/// 支付的收款方信息,如果涉及多收款方需传入该信息
/// </summary>
[XmlElement("payee")]
public UserIdentity Payee { get; set; }
/// <summary>
/// 收款方的额外信息,包含会员信息和支付机构账号信息
/// </summary>
[XmlElement("payee_ext")]
public UserIdentityExt PayeeExt { get; set; }
/// <summary>
/// 支付id支付宝针对每一笔支付请求生成的唯一支付凭证
/// </summary>
[XmlElement("payment_id")]
public string PaymentId { get; set; }
/// <summary>
/// 退款金额,单位为元,精确到小数点后两位,取值范围[0.01,100000000]
/// </summary>
[XmlElement("refund_amount")]
public string RefundAmount { get; set; }
/// <summary>
/// 退款请求号,对应一笔业务订单下的一次退款请求,不同退款请求需保证请求号唯一
/// </summary>
[XmlElement("refund_request_no")]
public string RefundRequestNo { get; set; }
/// <summary>
/// 退款说明
/// </summary>
[XmlElement("remark")]
public string Remark { get; set; }
}
}