NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayEbppInvoiceFinancialB...

43 lines
1.2 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>
/// AlipayEbppInvoiceFinancialBlockchainBatchqueryModel Data Structure.
/// </summary>
[Serializable]
public class AlipayEbppInvoiceFinancialBlockchainBatchqueryModel : AopObject
{
/// <summary>
/// 证件号码的hash值使用MD5算法获取的hash
/// </summary>
[XmlElement("cert_no_hash")]
public string CertNoHash { get; set; }
/// <summary>
/// 证件类型 可选值身份证IDENTITY_CARD
/// </summary>
[XmlElement("cert_type")]
public string CertType { get; set; }
/// <summary>
/// 当前页码起始号码是1
/// </summary>
[XmlElement("current_page")]
public long CurrentPage { get; set; }
/// <summary>
/// 票据种类 可选值财政电子票据FINANCIAL_ELECTRONIC_BILL
/// </summary>
[XmlElement("invoice_kind")]
public string InvoiceKind { get; set; }
/// <summary>
/// 分页大小最大值为50
/// </summary>
[XmlElement("page_size")]
public long PageSize { get; set; }
}
}