using System;
using System.Xml.Serialization;
using System.Collections.Generic;
using Top.Api;
namespace DingTalk.Api.Response
{
///
/// OapiKacDatavDeptTelconfListResponse.
///
public class OapiKacDatavDeptTelconfListResponse : DingTalkResponse
{
///
/// 结果码
///
[XmlElement("errcode")]
public long Errcode { get; set; }
///
/// 提示信息
///
[XmlElement("errmsg")]
public string Errmsg { get; set; }
///
/// resut
///
[XmlElement("result")]
public TelConferenceDeptSummaryResponseDomain Result { get; set; }
///
/// TelConferenceDeptSummaryVoDomain Data Structure.
///
[Serializable]
public class TelConferenceDeptSummaryVoDomain : TopObject
{
///
/// 部门id
///
[XmlElement("dept_id")]
public long DeptId { get; set; }
///
/// 部门名称
///
[XmlElement("dept_name")]
public string DeptName { get; set; }
///
/// 参与人次
///
[XmlElement("join_count")]
public long JoinCount { get; set; }
///
/// 平均时长(分钟)
///
[XmlElement("start_avg_len_min")]
public string StartAvgLenMin { get; set; }
///
/// 发起次数
///
[XmlElement("start_count")]
public long StartCount { get; set; }
///
/// 发起总时长(分钟)
///
[XmlElement("start_len_min")]
public string StartLenMin { get; set; }
}
///
/// TelConferenceDeptSummaryResponseDomain Data Structure.
///
[Serializable]
public class TelConferenceDeptSummaryResponseDomain : TopObject
{
///
/// data
///
[XmlArray("data")]
[XmlArrayItem("tel_conference_dept_summary_vo")]
public List Data { get; set; }
///
/// 是否有下一页;true则存在更多分页
///
[XmlElement("has_more")]
public bool HasMore { get; set; }
///
/// 下一次请求的分页游标
///
[XmlElement("next_cursor")]
public long NextCursor { get; set; }
}
}
}