AlipayEbppPdeductPayResponse.cs 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. using System;
  2. using System.Xml.Serialization;
  3. namespace Aop.Api.Response
  4. {
  5. /// <summary>
  6. /// AlipayEbppPdeductPayResponse.
  7. /// </summary>
  8. public class AlipayEbppPdeductPayResponse : AopResponse
  9. {
  10. /// <summary>
  11. /// 支付宝代扣协议ID
  12. /// </summary>
  13. [XmlElement("agreement_id")]
  14. public string AgreementId { get; set; }
  15. /// <summary>
  16. /// 支付宝订单流水号
  17. /// </summary>
  18. [XmlElement("bill_no")]
  19. public string BillNo { get; set; }
  20. /// <summary>
  21. /// 扩展参数
  22. /// </summary>
  23. [XmlElement("extend_field")]
  24. public string ExtendField { get; set; }
  25. /// <summary>
  26. /// 商户代扣业务流水
  27. /// </summary>
  28. [XmlElement("out_order_no")]
  29. public string OutOrderNo { get; set; }
  30. /// <summary>
  31. /// 订单支付状态。 0:未知 1:成功 2:失败
  32. /// </summary>
  33. [XmlElement("result_status")]
  34. public string ResultStatus { get; set; }
  35. }
  36. }