AlipayEbppPdeductSignCancelResponse.cs 779 B

1234567891011121314151617181920212223242526272829
  1. using System;
  2. using System.Xml.Serialization;
  3. namespace Aop.Api.Response
  4. {
  5. /// <summary>
  6. /// AlipayEbppPdeductSignCancelResponse.
  7. /// </summary>
  8. public class AlipayEbppPdeductSignCancelResponse : AopResponse
  9. {
  10. /// <summary>
  11. /// 支付宝代扣协议ID
  12. /// </summary>
  13. [XmlElement("agreement_id")]
  14. public string AgreementId { get; set; }
  15. /// <summary>
  16. /// 支付宝协议状态。解约成功则返回cancel
  17. /// </summary>
  18. [XmlElement("agreement_status")]
  19. public string AgreementStatus { get; set; }
  20. /// <summary>
  21. /// 商户代扣协议ID
  22. /// </summary>
  23. [XmlElement("out_agreement_id")]
  24. public string OutAgreementId { get; set; }
  25. }
  26. }