1234567891011121314151617181920212223242526272829303132333435 |
- using System;
- using System.Xml.Serialization;
- namespace Aop.Api.Response
- {
- /// <summary>
- /// AlipaySiteprobeDeviceInfoSearchResponse.
- /// </summary>
- public class AlipaySiteprobeDeviceInfoSearchResponse : AopResponse
- {
- /// <summary>
- /// 返回码
- /// </summary>
- [XmlElement("code")]
- public string Code { get; set; }
- /// <summary>
- /// 总设备数  设备ID1  BSSID  SSID  密码(可空)  认证ID(可空,白名单必填,OTP不填)  AuthType  ShopID  是否上架  设备ID2  ….
- /// </summary>
- [XmlElement("devices")]
- public string Devices { get; set; }
- /// <summary>
- /// 返回码描述
- /// </summary>
- [XmlElement("msg")]
- public string Msg { get; set; }
- /// <summary>
- /// 店铺路由器总数
- /// </summary>
- [XmlElement("total")]
- public long Total { get; set; }
- }
- }
|