using System; using System.Xml.Serialization; using System.Collections.Generic; using Top.Api; namespace DingTalk.Api.Response { /// /// OapiEnterpriseMicroappUsedataStatResponse. /// public class OapiEnterpriseMicroappUsedataStatResponse : DingTalkResponse { /// /// 错误码 /// [XmlElement("errcode")] public long Errcode { get; set; } /// /// 错误信息 /// [XmlElement("errmsg")] public string Errmsg { get; set; } /// /// 系统自动生成 /// [XmlArray("result")] [XmlArrayItem("micro_app_data_v_o")] public List Result { get; set; } /// /// 是否成功 /// [XmlElement("success")] public bool Success { get; set; } /// /// MicroAppDataVODomain Data Structure. /// [Serializable] public class MicroAppDataVODomain : TopObject { /// /// 组织微应用名称 /// [XmlElement("agent_name")] public string AgentName { get; set; } /// /// 企业ID /// [XmlElement("corp_id")] public string CorpId { get; set; } /// /// 最近1天打开微应用用户数 /// [XmlElement("open_micro_user_cnt_1d")] public string OpenMicroUserCnt1d { get; set; } /// /// 最近7天打开微应用用户数 /// [XmlElement("open_micro_user_cnt_1w")] public string OpenMicroUserCnt1w { get; set; } /// /// 查询时间 /// [XmlElement("stat_date")] public string StatDate { get; set; } } } }