NewGaoKaoApi/PaymentSDK/AliPay/Domain/FeeValue.cs

61 lines
1.7 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>
/// FeeValue Data Structure.
/// </summary>
[Serializable]
public class FeeValue : AopObject
{
/// <summary>
/// 保底费率
/// </summary>
[XmlElement("bottom_cent")]
public string BottomCent { get; set; }
/// <summary>
/// 币种如人民币是156
/// </summary>
[XmlElement("currency_code")]
public string CurrencyCode { get; set; }
/// <summary>
/// 固定费额
/// </summary>
[XmlElement("fix_cent")]
public string FixCent { get; set; }
/// <summary>
/// 最小费率
/// </summary>
[XmlElement("lower")]
public string Lower { get; set; }
/// <summary>
/// 费率比例单位。 ONE("RO", "ONE", "一", "一"), ONE_HUNDREDTH("RP", "ONE_HUNDREDTH", "百分之一", "百分之一"), ONE_THOUSANDTH("RM", "ONE_THOUSANDTH", "千分之一", "千分之一"), ONE_TEN_THOUSANDTH("RT", "ONE_TEN_THOUSANDTH", "万分之一", "万分之一");
/// </summary>
[XmlElement("rate_unit")]
public string RateUnit { get; set; }
/// <summary>
/// 费率值
/// </summary>
[XmlElement("rate_value")]
public string RateValue { get; set; }
/// <summary>
/// 封顶费额
/// </summary>
[XmlElement("top_cent")]
public string TopCent { get; set; }
/// <summary>
/// 最大费率
/// </summary>
[XmlElement("upper")]
public string Upper { get; set; }
}
}