NewGaoKaoApi/PaymentSDK/AliPay/Domain/OpenApiRefundFundDetailPojo.cs

39 lines
1.2 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;
using System.Collections.Generic;
namespace Aop.Api.Domain
{
/// <summary>
/// OpenApiRefundFundDetailPojo Data Structure.
/// </summary>
[Serializable]
public class OpenApiRefundFundDetailPojo : AopObject
{
/// <summary>
/// 退款资金明细 详: 若type为paySerialNo则funds为 [{"paySerialNo":"支付流水1","refundFee":"退款金额1"},{"paySerialNo":"支付流水2","refundFee":"退款金额2"}]
/// </summary>
[XmlArray("funds")]
[XmlArrayItem("string")]
public List<string> Funds { get; set; }
/// <summary>
/// 收入方账户 为空则原路退回
/// </summary>
[XmlElement("trans_in")]
public string TransIn { get; set; }
/// <summary>
/// 收入方账户类型
/// </summary>
[XmlElement("trans_in_type")]
public string TransInType { get; set; }
/// <summary>
/// 描述资金明细类型 详若type为paySerialNo 则funds参数中体现的都为对应支付流水的退款明细
/// </summary>
[XmlElement("type")]
public string Type { get; set; }
}
}