duhe
2024-10-25 948bc8f68b05abd2c942217159de1fe31075f8cd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
using System;
using System.Xml.Serialization;
using System.Collections.Generic;
using Top.Api;
 
namespace DingTalk.Api.Response
{
    /// <summary>
    /// OapiKacDatavDingGetResponse.
    /// </summary>
    public class OapiKacDatavDingGetResponse : DingTalkResponse
    {
        /// <summary>
        /// 错误码
        /// </summary>
        [XmlElement("errcode")]
        public long Errcode { get; set; }
 
        /// <summary>
        /// 错误描述
        /// </summary>
        [XmlElement("errmsg")]
        public string Errmsg { get; set; }
 
        /// <summary>
        /// 返回结果对象
        /// </summary>
        [XmlElement("result")]
        public DingUsageSummaryResponseDomain Result { get; set; }
 
    /// <summary>
/// DingUsageSummaryResponseDomain Data Structure.
/// </summary>
[Serializable]
 
public class DingUsageSummaryResponseDomain : TopObject
{
            /// <summary>
            /// 最近一天发送应用DING数
            /// </summary>
            [XmlElement("ding_app_cnt")]
            public long DingAppCnt { get; set; }
    
            /// <summary>
            /// 最近一天发送应用DING人数
            /// </summary>
            [XmlElement("ding_app_user_cnt")]
            public long DingAppUserCnt { get; set; }
    
            /// <summary>
            /// 最近一天发送电话DING数
            /// </summary>
            [XmlElement("ding_call_cnt")]
            public long DingCallCnt { get; set; }
    
            /// <summary>
            /// 最近一天发送电话DING人数
            /// </summary>
            [XmlElement("ding_call_user_cnt")]
            public long DingCallUserCnt { get; set; }
    
            /// <summary>
            /// 最近1天发送DING数
            /// </summary>
            [XmlElement("ding_cnt")]
            public long DingCnt { get; set; }
    
            /// <summary>
            /// 最近一天发送短信DING数
            /// </summary>
            [XmlElement("ding_sms_cnt")]
            public long DingSmsCnt { get; set; }
    
            /// <summary>
            /// 最近一天发送短信DING人数
            /// </summary>
            [XmlElement("ding_sms_user_cnt")]
            public long DingSmsUserCnt { get; set; }
    
            /// <summary>
            /// 最近1天发送DING人数
            /// </summary>
            [XmlElement("ding_user_cnt")]
            public long DingUserCnt { get; set; }
    
            /// <summary>
            /// 最近一天发送语音DING数
            /// </summary>
            [XmlElement("ding_voip_cnt")]
            public long DingVoipCnt { get; set; }
    
            /// <summary>
            /// 最近一天发送语音DING人数
            /// </summary>
            [XmlElement("ding_voip_user_cnt")]
            public long DingVoipUserCnt { get; set; }
}
 
    }
}