using System;
using System.Xml.Serialization;
using System.Collections.Generic;
using Top.Api;
namespace DingTalk.Api.Response
{
///
/// OapiKacDatavChatSummaryGetResponse.
///
public class OapiKacDatavChatSummaryGetResponse : DingTalkResponse
{
///
/// 结果码
///
[XmlElement("errcode")]
public long Errcode { get; set; }
///
/// 提示信息
///
[XmlElement("errmsg")]
public string Errmsg { get; set; }
///
/// 结果对象
///
[XmlElement("result")]
public ImSummaryResponseDomain Result { get; set; }
///
/// ImSummaryResponseDomain Data Structure.
///
[Serializable]
public class ImSummaryResponseDomain : TopObject
{
///
/// 活跃群数(当日)
///
[XmlElement("active_group_count")]
public long ActiveGroupCount { get; set; }
///
/// 单聊用户数
///
[XmlElement("chat_user_count")]
public long ChatUserCount { get; set; }
///
/// 群聊用户数
///
[XmlElement("group_chat_user_count")]
public long GroupChatUserCount { get; set; }
///
/// 总群数
///
[XmlElement("group_count")]
public long GroupCount { get; set; }
///
/// 群聊消息数
///
[XmlElement("group_message_count")]
public long GroupMessageCount { get; set; }
///
/// 发送群文件数(当日)
///
[XmlElement("group_send_file_message_count")]
public string GroupSendFileMessageCount { get; set; }
///
/// 人均发送消息数
///
[XmlElement("message_avg_count")]
public string MessageAvgCount { get; set; }
///
/// 消息数
///
[XmlElement("message_total_count")]
public long MessageTotalCount { get; set; }
///
/// 聊天用户数
///
[XmlElement("message_user_count")]
public long MessageUserCount { get; set; }
///
/// 新增群数(当日)
///
[XmlElement("new_group_count")]
public long NewGroupCount { get; set; }
///
/// 单聊消息数
///
[XmlElement("single_message_count")]
public long SingleMessageCount { get; set; }
}
}
}