NewGaoKaoApi/PaymentSDK/AliPay/Domain/InvoiceAmountLimitDTO.cs

31 lines
795 B
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;
namespace Aop.Api.Domain
{
/// <summary>
/// InvoiceAmountLimitDTO Data Structure.
/// </summary>
[Serializable]
public class InvoiceAmountLimitDTO : AopObject
{
/// <summary>
/// 单张发票限额
/// </summary>
[XmlElement("amount_limit")]
public string AmountLimit { get; set; }
/// <summary>
/// 发票类型可选值电子发票0纸质普票1纸质专票2
/// </summary>
[XmlElement("invoice_kind")]
public long InvoiceKind { get; set; }
/// <summary>
/// 月发票限额
/// </summary>
[XmlElement("month_amount_limit")]
public string MonthAmountLimit { get; set; }
}
}