NewGaoKaoApi/PaymentSDK/AliPay/Domain/KbpFundTool.cs

31 lines
939 B
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>
/// KbpFundTool Data Structure.
/// </summary>
[Serializable]
public class KbpFundTool : AopObject
{
/// <summary>
/// 非现金类支付明细抵扣金额;单位:分;字符类型必须为正整数格式
/// </summary>
[XmlElement("f_fee")]
public string FFee { get; set; }
/// <summary>
/// 资金处理中第三方支付工具ID 比如在支付中使用的红包ID
/// </summary>
[XmlElement("f_id")]
public string FId { get; set; }
/// <summary>
/// 非现金类支付明细类型标识红包、代金券比如CASH带资金红包、代金券NO_CASH不带资金红包、代金券
/// </summary>
[XmlElement("f_type")]
public string FType { get; set; }
}
}