NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayEbppInvoiceTokenBatch...

25 lines
744 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>
/// AlipayEbppInvoiceTokenBatchqueryModel Data Structure.
/// </summary>
[Serializable]
public class AlipayEbppInvoiceTokenBatchqueryModel : AopObject
{
/// <summary>
/// 查询请求令牌 通过唤起支付宝钱包后用户进入发票管家选择发票列表后创建并通过isv接收url回传给isv
/// </summary>
[XmlElement("invoice_token")]
public string InvoiceToken { get; set; }
/// <summary>
/// 发票要素获取应用场景 固定值 INVOICE_EXPENSE
/// </summary>
[XmlElement("scene")]
public string Scene { get; set; }
}
}