NewGaoKaoApi/PaymentSDK/AliPay/Domain/GFAOpenAPIAmortizeExtInfo.cs

55 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>
/// GFAOpenAPIAmortizeExtInfo Data Structure.
/// </summary>
[Serializable]
public class GFAOpenAPIAmortizeExtInfo : AopObject
{
/// <summary>
/// 待摊销金额。(单位:各币种的“元”单位,精确到小数点后两位)
/// </summary>
[XmlElement("amortize_amount")]
public string AmortizeAmount { get; set; }
/// <summary>
/// 摊销频率
/// </summary>
[XmlElement("amortize_period_type")]
public string AmortizePeriodType { get; set; }
/// <summary>
/// 摊销类型
/// </summary>
[XmlElement("amortize_type")]
public string AmortizeType { get; set; }
/// <summary>
/// 待摊销业务量
/// </summary>
[XmlElement("amortize_volume")]
public long AmortizeVolume { get; set; }
/// <summary>
/// 摊销失效时间。GMT+8时区精确到天暂不支持小时分秒等粒度
/// </summary>
[XmlElement("gmt_end")]
public string GmtEnd { get; set; }
/// <summary>
/// 摊销生效时间。GMT+8时区精确到天暂不支持小时分秒等粒度
/// </summary>
[XmlElement("gmt_valid")]
public string GmtValid { get; set; }
/// <summary>
/// 同 out_business_no 下业财已受理的总摊销金额(单位:各币种的“元”单位,精确到小数点后两位)
/// </summary>
[XmlElement("total_amortize_amount")]
public string TotalAmortizeAmount { get; set; }
}
}