Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Response/AlipayBossCsChannelQueryResponse.cs
wanyongkang d318014316 初始提交
2020-10-07 20:25:03 +08:00

82 lines
1.8 KiB
C#

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