using System; using System.Xml.Serialization; using System.Collections.Generic; namespace Top.Api.Response { /// /// JushitaJdpJduserGetResponse. /// public class JushitaJdpJduserGetResponse : TopResponse { /// /// result /// [XmlElement("result")] public ResultSetDomain Result { get; set; } /// /// JdUserDomain Data Structure. /// [Serializable] public class JdUserDomain : TopObject { /// /// appKey /// [XmlElement("app_key")] public string AppKey { get; set; } /// /// region /// [XmlElement("region")] public string Region { get; set; } /// /// userId /// [XmlElement("user_id")] public long UserId { get; set; } /// /// valid /// [XmlElement("valid")] public bool Valid { get; set; } } /// /// ResultSetDomain Data Structure. /// [Serializable] public class ResultSetDomain : TopObject { /// /// error /// [XmlElement("error")] public bool Error { get; set; } /// /// errorCode /// [XmlElement("error_code")] public string ErrorCode { get; set; } /// /// errorMsg /// [XmlElement("error_msg")] public string ErrorMsg { get; set; } /// /// firstResult /// [XmlElement("first_result")] public string FirstResult { get; set; } /// /// hasNext /// [XmlElement("has_next")] public bool HasNext { get; set; } /// /// results /// [XmlArray("results")] [XmlArrayItem("jd_user")] public List Results { get; set; } /// /// totalCount /// [XmlElement("total_count")] public long TotalCount { get; set; } } } }