30 lines
1.0 KiB
C#
30 lines
1.0 KiB
C#
using System;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace Aop.Api.Response
|
|
{
|
|
/// <summary>
|
|
/// AlipayDataBillEreceiptQueryResponse.
|
|
/// </summary>
|
|
public class AlipayDataBillEreceiptQueryResponse : AopResponse
|
|
{
|
|
/// <summary>
|
|
/// 下载链接。status为SUCCESS时返回。用户可以使用此http链接下载文件内容。有效时间20s。<br/> 生成的文件是zip格式。需要解压后获取电子回单pdf内容
|
|
/// </summary>
|
|
[XmlElement("download_url")]
|
|
public string DownloadUrl { get; set; }
|
|
|
|
/// <summary>
|
|
/// 如果生成失败,则会返回失败原因
|
|
/// </summary>
|
|
[XmlElement("error_message")]
|
|
public string ErrorMessage { get; set; }
|
|
|
|
/// <summary>
|
|
/// 处理状态<br/> <ul> <li>INIT - 初始化</li> <li>PROCESS - 处理中</li> <li>SUCCESS - 成功</li> <li>FAIL - 失败</li> </ul>
|
|
/// </summary>
|
|
[XmlElement("status")]
|
|
public string Status { get; set; }
|
|
}
|
|
}
|