NewGaoKaoApi/PaymentSDK/AliPay/Domain/InvoiceAmountLimitInfo.cs

31 lines
955 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>
/// InvoiceAmountLimitInfo Data Structure.
/// </summary>
[Serializable]
public class InvoiceAmountLimitInfo : AopObject
{
/// <summary>
/// 单张发票限额,单位元
/// </summary>
[XmlElement("amount_limit")]
public string AmountLimit { get; set; }
/// <summary>
/// 税号可开发票类型,列表类型。 可选值: 增值税电子普通发票PLAIN, 增值税专用发票SPECIAL 增值税普通发票PLAIN_INVOICE增值税普通发票(卷式)PAPER_INVOICE
/// </summary>
[XmlElement("invoice_kind")]
public string InvoiceKind { get; set; }
/// <summary>
/// 月发票限额,单位元
/// </summary>
[XmlElement("month_amount_limit")]
public string MonthAmountLimit { get; set; }
}
}