AlipaySiteprobeDeviceInfoSearchResponse.cs 1.0 KB

1234567891011121314151617181920212223242526272829303132333435
  1. using System;
  2. using System.Xml.Serialization;
  3. namespace Aop.Api.Response
  4. {
  5. /// <summary>
  6. /// AlipaySiteprobeDeviceInfoSearchResponse.
  7. /// </summary>
  8. public class AlipaySiteprobeDeviceInfoSearchResponse : AopResponse
  9. {
  10. /// <summary>
  11. /// 返回码
  12. /// </summary>
  13. [XmlElement("code")]
  14. public string Code { get; set; }
  15. /// <summary>
  16. /// 总设备数 &#61548; 设备ID1 &#61550; BSSID &#61550; SSID &#61550; 密码(可空) &#61550; 认证ID(可空,白名单必填,OTP不填) &#61550; AuthType &#61550; ShopID &#61550; 是否上架 &#61548; 设备ID2 &#61548; ….
  17. /// </summary>
  18. [XmlElement("devices")]
  19. public string Devices { get; set; }
  20. /// <summary>
  21. /// 返回码描述
  22. /// </summary>
  23. [XmlElement("msg")]
  24. public string Msg { get; set; }
  25. /// <summary>
  26. /// 店铺路由器总数
  27. /// </summary>
  28. [XmlElement("total")]
  29. public long Total { get; set; }
  30. }
  31. }