using System; using System.Xml.Serialization; using System.Collections.Generic; using Top.Api; namespace DingTalk.Api.Response { /// /// OapiKacDatavDauSummaryGetResponse. /// public class OapiKacDatavDauSummaryGetResponse : DingTalkResponse { /// /// 结果码 /// [XmlElement("errcode")] public long Errcode { get; set; } /// /// 错误信息 /// [XmlElement("errmsg")] public string Errmsg { get; set; } /// /// 结果对象 /// [XmlElement("result")] public DauSummaryResponseDomain Result { get; set; } /// /// DauSummaryResponseDomain Data Structure. /// [Serializable] public class DauSummaryResponseDomain : TopObject { /// /// 激活人数(累计) /// [XmlElement("activated_count")] public long ActivatedCount { get; set; } /// /// 钉钉app的登录用户 /// [XmlElement("app_active_users")] public long AppActiveUsers { get; set; } /// /// 聊天用户数 /// [XmlElement("chat_user_count")] public long ChatUserCount { get; set; } /// /// 通讯录人数 /// [XmlElement("contacts_count")] public long ContactsCount { get; set; } /// /// 日活跃人数 /// [XmlElement("daily_active_users")] public long DailyActiveUsers { get; set; } /// /// 钉钉pc端的登录用户 /// [XmlElement("pc_active_users")] public long PcActiveUsers { get; set; } } } }