NewGaoKaoApi/PaymentSDK/AliPay/Response/AlipayEbppInvoiceFileOutput...

18 lines
483 B
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.Response
{
/// <summary>
/// AlipayEbppInvoiceFileOutputQueryResponse.
/// </summary>
public class AlipayEbppInvoiceFileOutputQueryResponse : AopResponse
{
/// <summary>
/// 发票文件内容,需要先base64解码获取原始byte[]类型文件流
/// </summary>
[XmlElement("invoice_file_content")]
public string InvoiceFileContent { get; set; }
}
}