You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

48 lines
1.3 KiB
C#

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>
/// AlipayEbppPdeductBillPayStatusResponse.
/// </summary>
public class AlipayEbppPdeductBillPayStatusResponse : AopResponse
{
/// <summary>
/// 支付宝协议流水
/// </summary>
[XmlElement("agreement_id")]
public string AgreementId { get; set; }
/// <summary>
/// 支付宝流billNo
/// </summary>
[XmlElement("order_no")]
public string OrderNo { get; set; }
/// <summary>
/// 订单的结果码
/// </summary>
[XmlElement("order_result_code")]
public string OrderResultCode { get; set; }
/// <summary>
/// 订单的结果描述
/// </summary>
[XmlElement("order_result_msg")]
public string OrderResultMsg { get; set; }
/// <summary>
/// 外部订单流水
/// </summary>
[XmlElement("out_order_no")]
public string OutOrderNo { get; set; }
/// <summary>
/// 支付宝订单支付状态。 0未知状态。 1支付成功。 2支付失败。
/// </summary>
[XmlElement("status")]
public string Status { get; set; }
}
}