接口文件

This commit is contained in:
“wanyongkang”
2024-04-10 13:55:27 +08:00
parent fff6bee06a
commit ed3b2c653e
3190 changed files with 268248 additions and 1 deletions

View File

@@ -0,0 +1,36 @@
using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// TradeFundBill Data Structure.
/// </summary>
[Serializable]
public class TradeFundBill : AopObject
{
/// <summary>
/// 该支付工具类型所使用的金额
/// </summary>
[JsonProperty("amount")]
public string Amount { get; set; }
/// <summary>
/// 交易使用的资金渠道,详见 <a href="https://doc.open.alipay.com/doc2/detail?treeId=26&articleId=103259&docType=1">支付渠道列表</a>
/// </summary>
[JsonProperty("fund_channel")]
public string FundChannel { get; set; }
/// <summary>
/// 渠道所使用的资金类型,目前只在资金渠道(fund_channel)是银行卡渠道(BANKCARD)的情况下才返回该信息(DEBIT_CARD:借记卡,CREDIT_CARD:信用卡,MIXED_CARD:借贷合一卡)
/// </summary>
[JsonProperty("fund_type")]
public string FundType { get; set; }
/// <summary>
/// 渠道实际付款金额
/// </summary>
[JsonProperty("real_amount")]
public string RealAmount { get; set; }
}
}