AlipayEbppRechargeItemGetResponse.cs 965 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. using System;
  2. using System.Xml.Serialization;
  3. using System.Collections.Generic;
  4. using Aop.Api.Domain;
  5. namespace Aop.Api.Response
  6. {
  7. /// <summary>
  8. /// AlipayEbppRechargeItemGetResponse.
  9. /// </summary>
  10. public class AlipayEbppRechargeItemGetResponse : AopResponse
  11. {
  12. /// <summary>
  13. /// 错误码
  14. /// </summary>
  15. [XmlElement("error_code")]
  16. public string ErrorCode { get; set; }
  17. /// <summary>
  18. /// 系统返回错误码
  19. /// </summary>
  20. [XmlElement("error_message")]
  21. public string ErrorMessage { get; set; }
  22. /// <summary>
  23. /// 充值面额状态对象list
  24. /// </summary>
  25. [XmlArray("iterm_infos")]
  26. [XmlArrayItem("iterm_info")]
  27. public List<ItermInfo> ItermInfos { get; set; }
  28. /// <summary>
  29. /// 是否成功
  30. /// </summary>
  31. [XmlElement("success")]
  32. public bool Success { get; set; }
  33. }
  34. }