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