using System; using System.Xml.Serialization; namespace Aop.Api.Response { /// /// AlipayEbppPdeductPayResponse. /// public class AlipayEbppPdeductPayResponse : AopResponse { /// /// 支付宝代扣协议ID /// [XmlElement("agreement_id")] public string AgreementId { get; set; } /// /// 支付宝订单流水号 /// [XmlElement("bill_no")] public string BillNo { get; set; } /// /// 扩展参数 /// [XmlElement("extend_field")] public string ExtendField { get; set; } /// /// 商户代扣业务流水 /// [XmlElement("out_order_no")] public string OutOrderNo { get; set; } /// /// 订单支付状态。 0:未知 1:成功 2:失败 /// [XmlElement("result_status")] public string ResultStatus { get; set; } } }