using System; using System.Xml.Serialization; using System.Collections.Generic; using Top.Api; namespace DingTalk.Api.Response { /// /// OapiKacDatavGroupGetResponse. /// public class OapiKacDatavGroupGetResponse : DingTalkResponse { /// /// 错误码 /// [XmlElement("errcode")] public long Errcode { get; set; } /// /// 错误描述 /// [XmlElement("errmsg")] public string Errmsg { get; set; } /// /// 返回结果对象 /// [XmlElement("result")] public GroupStatisticalSummaryResponseDomain Result { get; set; } /// /// GroupStatisticalSummaryResponseDomain Data Structure. /// [Serializable] public class GroupStatisticalSummaryResponseDomain : TopObject { /// /// 部门群数量 /// [XmlElement("dept_group_cnt")] public long DeptGroupCnt { get; set; } /// /// 内部群数量 /// [XmlElement("inner_group_cnt")] public long InnerGroupCnt { get; set; } } } }