using System; using System.Xml.Serialization; using System.Collections.Generic; using Top.Api; namespace DingTalk.Api.Response { /// /// OapiKacDatavDeptVideoconfListResponse. /// public class OapiKacDatavDeptVideoconfListResponse : DingTalkResponse { /// /// 结果码 /// [XmlElement("errcode")] public long Errcode { get; set; } /// /// 提示信息 /// [XmlElement("errmsg")] public string Errmsg { get; set; } /// /// resut /// [XmlElement("result")] public McsDeptSummaryResponseDomain Result { get; set; } /// /// McsDeptSummaryVoDomain Data Structure. /// [Serializable] public class McsDeptSummaryVoDomain : TopObject { /// /// 部门id /// [XmlElement("dept_id")] public long DeptId { get; set; } /// /// 部门名称 /// [XmlElement("dept_name")] public string DeptName { get; set; } /// /// 参与人次 /// [XmlElement("join_count")] public long JoinCount { get; set; } /// /// 平均时长(分钟) /// [XmlElement("start_avg_len_min")] public string StartAvgLenMin { get; set; } /// /// 发起会议次数 /// [XmlElement("start_count")] public long StartCount { get; set; } /// /// 发起会议总时长(分钟) /// [XmlElement("start_len_min")] public string StartLenMin { get; set; } } /// /// McsDeptSummaryResponseDomain Data Structure. /// [Serializable] public class McsDeptSummaryResponseDomain : TopObject { /// /// data /// [XmlArray("data")] [XmlArrayItem("mcs_dept_summary_vo")] public List Data { get; set; } /// /// 是否有下一页;true则存在更多分页 /// [XmlElement("has_more")] public bool HasMore { get; set; } /// /// 下一次请求的分页游标 /// [XmlElement("next_cursor")] public long NextCursor { get; set; } } } }