using System; using System.Xml.Serialization; namespace Aop.Api.Response { /// /// AlipayBossCsChannelQueryResponse. /// public class AlipayBossCsChannelQueryResponse : AopResponse { /// /// 平均通话时长 /// [XmlElement("att")] public string Att { get; set; } /// /// 备注 /// [XmlElement("comment")] public string Comment { get; set; } /// /// 接通率 /// [XmlElement("connection_rate")] public string ConnectionRate { get; set; } /// /// 通话中人数 /// [XmlElement("curr_agent_talking")] public string CurrAgentTalking { get; set; } /// /// 在线小二数 /// [XmlElement("curr_agents_logged_in")] public string CurrAgentsLoggedIn { get; set; } /// /// 排队数 /// [XmlElement("curr_number_waiting_calls")] public string CurrNumberWaitingCalls { get; set; } /// /// 小休人数 /// [XmlElement("current_not_ready_agents")] public string CurrentNotReadyAgents { get; set; } /// /// 等待人数 /// [XmlElement("current_ready_agents")] public string CurrentReadyAgents { get; set; } /// /// 主键 /// [XmlElement("row_key")] public string RowKey { get; set; } /// /// 流入量 /// [XmlElement("visitor_inflow")] public string VisitorInflow { get; set; } /// /// 应答量 /// [XmlElement("visitor_response")] public string VisitorResponse { get; set; } /// /// 应答量[转接] /// [XmlElement("visitor_response_transfer")] public string VisitorResponseTransfer { get; set; } } }