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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
using System;
using System.Xml.Serialization;
using System.Collections.Generic;
using Top.Api;
 
namespace DingTalk.Api.Response
{
    /// <summary>
    /// OapiLiveGroupliveStatisticsResponse.
    /// </summary>
    public class OapiLiveGroupliveStatisticsResponse : DingTalkResponse
    {
        /// <summary>
        /// 错误码
        /// </summary>
        [XmlElement("errcode")]
        public long Errcode { get; set; }
 
        /// <summary>
        /// 错误描述
        /// </summary>
        [XmlElement("errmsg")]
        public string Errmsg { get; set; }
 
        /// <summary>
        /// 返回结果
        /// </summary>
        [XmlElement("result")]
        public GroupLiveStatisticsDomain Result { get; set; }
 
    /// <summary>
/// GroupliveviewersDomain Data Structure.
/// </summary>
[Serializable]
 
public class GroupliveviewersDomain : TopObject
{
            /// <summary>
            /// openid
            /// </summary>
            [XmlElement("open_id")]
            public long OpenId { get; set; }
    
            /// <summary>
            /// 直播时长
            /// </summary>
            [XmlElement("play_duration")]
            public long PlayDuration { get; set; }
    
            /// <summary>
            /// 回放时长
            /// </summary>
            [XmlElement("play_record_duration")]
            public long PlayRecordDuration { get; set; }
}
 
    /// <summary>
/// GroupLiveStatisticsDomain Data Structure.
/// </summary>
[Serializable]
 
public class GroupLiveStatisticsDomain : TopObject
{
            /// <summary>
            /// 观看列表
            /// </summary>
            [XmlArray("group_live_viewers")]
            [XmlArrayItem("groupliveviewers")]
            public List<GroupliveviewersDomain> GroupLiveViewers { get; set; }
    
            /// <summary>
            /// 直播总时长
            /// </summary>
            [XmlElement("live_duration")]
            public long LiveDuration { get; set; }
    
            /// <summary>
            /// 消息
            /// </summary>
            [XmlElement("message_count")]
            public long MessageCount { get; set; }
    
            /// <summary>
            /// 点赞
            /// </summary>
            [XmlElement("praise_count")]
            public long PraiseCount { get; set; }
    
            /// <summary>
            /// pv
            /// </summary>
            [XmlElement("pv")]
            public long Pv { get; set; }
    
            /// <summary>
            /// 开始时间
            /// </summary>
            [XmlElement("start_sime")]
            public long StartSime { get; set; }
    
            /// <summary>
            /// 直播标题
            /// </summary>
            [XmlElement("title")]
            public string Title { get; set; }
    
            /// <summary>
            /// 未看数
            /// </summary>
            [XmlElement("unviewed_count")]
            public long UnviewedCount { get; set; }
    
            /// <summary>
            /// 已看
            /// </summary>
            [XmlElement("viewer_count")]
            public long ViewerCount { get; set; }
}
 
    }
}