using System;
using System.Xml.Serialization;
using System.Collections.Generic;
using Top.Api;
namespace DingTalk.Api.Response
{
///
/// OapiKacDatavVideoliveGetResponse.
///
public class OapiKacDatavVideoliveGetResponse : DingTalkResponse
{
///
/// 错误码
///
[XmlElement("errcode")]
public long Errcode { get; set; }
///
/// 错误描述信息
///
[XmlElement("errmsg")]
public string Errmsg { get; set; }
///
/// 统计数据对象
///
[XmlElement("result")]
public VideoLiveSummaryResponseDomain Result { get; set; }
///
/// VideoLiveSummaryResponseDomain Data Structure.
///
[Serializable]
public class VideoLiveSummaryResponseDomain : TopObject
{
///
/// 成功发起5分钟直播次数
///
[XmlElement("live_launch_succ5min_cnt")]
public long LiveLaunchSucc5minCnt { get; set; }
///
/// 成功发起直播次数
///
[XmlElement("live_launch_succ_cnt")]
public long LiveLaunchSuccCnt { get; set; }
///
/// 观看直播次数
///
[XmlElement("live_play_cnt")]
public long LivePlayCnt { get; set; }
///
/// 观看直播人数
///
[XmlElement("live_play_user_cnt")]
public long LivePlayUserCnt { get; set; }
///
/// 成功发起直播时长
///
[XmlElement("live_succ_time_len")]
public string LiveSuccTimeLen { get; set; }
///
/// 观看人数最多直播的观看人数
///
[XmlElement("max_user_cnt")]
public long MaxUserCnt { get; set; }
///
/// 最近一天看直播的人数(包含观看和回放
///
[XmlElement("watch_group_live_user_cnt")]
public long WatchGroupLiveUserCnt { get; set; }
}
}
}