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