1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- using System;
- using System.Xml.Serialization;
- namespace Aop.Api.Response
- {
-
-
-
- public class AlipaySiteprobeDeviceInfoGetResponse : AopResponse
- {
-
-
-
- [XmlElement("auth_id")]
- public string AuthId { get; set; }
-
-
-
- [XmlElement("auth_type")]
- public string AuthType { get; set; }
-
-
-
- [XmlElement("bssid")]
- public string Bssid { get; set; }
-
-
-
- [XmlElement("code")]
- public string Code { get; set; }
-
-
-
- [XmlElement("latitude")]
- public string Latitude { get; set; }
-
-
-
- [XmlElement("longitude")]
- public string Longitude { get; set; }
-
-
-
- [XmlElement("msg")]
- public string Msg { get; set; }
-
-
-
- [XmlElement("password")]
- public string Password { get; set; }
-
-
-
- [XmlElement("shop_id")]
- public string ShopId { get; set; }
-
-
-
- [XmlElement("ssid")]
- public string Ssid { get; set; }
-
-
-
- [XmlElement("status")]
- public string Status { get; set; }
- }
- }
|