using System; using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Domain { /// /// AlipayBossCsChannelQueryModel Data Structure. /// [Serializable] public class AlipayBossCsChannelQueryModel : AopObject { /// /// 平均通话时长的qualifier /// [JsonProperty("att")] public string Att { get; set; } /// /// 总接通率的qualifier /// [JsonProperty("connectionrate")] public string Connectionrate { get; set; } /// /// 在线小二人数的qualifier /// [JsonProperty("curragentsloggedin")] public string Curragentsloggedin { get; set; } /// /// 通话中人数的qualifier /// [JsonProperty("curragenttalking")] public string Curragenttalking { get; set; } /// /// 小休人数的qualifier /// [JsonProperty("currentnotreadyagents")] public string Currentnotreadyagents { get; set; } /// /// 等待人数的qualifier /// [JsonProperty("currentreadyagents")] public string Currentreadyagents { get; set; } /// /// 总排队数的Qualifier /// [JsonProperty("currnumberwaitingcalls")] public string Currnumberwaitingcalls { get; set; } /// /// 查询hbase的rowkey /// [JsonProperty("endkey")] public string Endkey { get; set; } /// /// 查询hbase的rowkey /// [JsonProperty("startkey")] public string Startkey { get; set; } /// /// 总流入量的qualifier /// [JsonProperty("visitorinflow")] public string Visitorinflow { get; set; } /// /// 总应答量的qualifier /// [JsonProperty("visitorresponse")] public string Visitorresponse { get; set; } /// /// 应答量[转接] 的qualifier /// [JsonProperty("visitorresponsetransfer")] public string Visitorresponsetransfer { get; set; } } }