using System; using System.Xml.Serialization; using System.Collections.Generic; using Top.Api; namespace DingTalk.Api.Response { /// /// OapiAttendanceGroupUsersQueryResponse. /// public class OapiAttendanceGroupUsersQueryResponse : DingTalkResponse { /// /// 出参 /// [XmlElement("result")] public DingOpenResultDomain Result { get; set; } /// /// ResultDomain Data Structure. /// [Serializable] public class ResultDomain : TopObject { /// /// 是否更多 /// [XmlElement("has_more")] public string HasMore { get; set; } /// /// 用户列表 /// [XmlArray("user_list")] [XmlArrayItem("string")] public List UserList { get; set; } } /// /// DingOpenResultDomain Data Structure. /// [Serializable] public class DingOpenResultDomain : TopObject { /// /// 错误码 /// [XmlElement("errcode")] public long Errcode { get; set; } /// /// 错误信息 /// [XmlElement("errmsg")] public string Errmsg { get; set; } /// /// 查询结果 /// [XmlElement("result")] public ResultDomain Result { get; set; } /// /// 是否成功 /// [XmlElement("success")] public bool Success { get; set; } } } }