AlipayEbppRechargeSaleproductGetResponse.cs 888 B

123456789101112131415161718192021222324252627282930313233343536
  1. using System;
  2. using System.Xml.Serialization;
  3. using Aop.Api.Domain;
  4. namespace Aop.Api.Response
  5. {
  6. /// <summary>
  7. /// AlipayEbppRechargeSaleproductGetResponse.
  8. /// </summary>
  9. public class AlipayEbppRechargeSaleproductGetResponse : AopResponse
  10. {
  11. /// <summary>
  12. /// 错误码
  13. /// </summary>
  14. [XmlElement("error_code")]
  15. public string ErrorCode { get; set; }
  16. /// <summary>
  17. /// 错误描述
  18. /// </summary>
  19. [XmlElement("error_msg")]
  20. public string ErrorMsg { get; set; }
  21. /// <summary>
  22. /// 是否成功
  23. /// </summary>
  24. [XmlElement("is_success")]
  25. public string IsSuccess { get; set; }
  26. /// <summary>
  27. /// 充值模型
  28. /// </summary>
  29. [XmlElement("recharge_model")]
  30. public RechargeModel RechargeModel { get; set; }
  31. }
  32. }