AlipayMemberCouponQuerydetailResponse.cs 870 B

123456789101112131415161718192021222324252627282930313233343536
  1. using System;
  2. using System.Xml.Serialization;
  3. using Aop.Api.Domain;
  4. namespace Aop.Api.Response
  5. {
  6. /// <summary>
  7. /// AlipayMemberCouponQuerydetailResponse.
  8. /// </summary>
  9. public class AlipayMemberCouponQuerydetailResponse : AopResponse
  10. {
  11. /// <summary>
  12. /// 红包信息
  13. /// </summary>
  14. [XmlElement("coupon")]
  15. public Coupon Coupon { get; set; }
  16. /// <summary>
  17. /// 错误码
  18. /// </summary>
  19. [XmlElement("error_code")]
  20. public string ErrorCode { get; set; }
  21. /// <summary>
  22. /// 具体错误原因
  23. /// </summary>
  24. [XmlElement("error_msg")]
  25. public string ErrorMsg { get; set; }
  26. /// <summary>
  27. /// 是否成功
  28. /// </summary>
  29. [XmlElement("success_code")]
  30. public string SuccessCode { get; set; }
  31. }
  32. }