using System; using System.Xml.Serialization; namespace Aop.Api.Response { /// /// AlipayEbppPdeductBillPayStatusResponse. /// public class AlipayEbppPdeductBillPayStatusResponse : AopResponse { /// /// 支付宝协议流水 /// [XmlElement("agreement_id")] public string AgreementId { get; set; } /// /// 支付宝流billNo /// [XmlElement("order_no")] public string OrderNo { get; set; } /// /// 外部订单流水 /// [XmlElement("out_order_no")] public string OutOrderNo { get; set; } /// /// 支付宝订单支付状态。 0:未知状态。 1:支付成功。 2:支付失败。 /// [XmlElement("status")] public string Status { get; set; } } }