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