/*----------------------------------------------------------------
Copyright (C) 2019 Senparc
文件名:GetWaitCaseResultJson.cs
文件功能描述:获取未接入会话列表返回结果
创建标识:Senparc - 20150306
----------------------------------------------------------------*/
using System.Collections.Generic;
using Senparc.Weixin.Entities;
namespace Senparc.Weixin.MP.AdvancedAPIs.CustomService
{
///
/// 获取未接入会话列表返回结果
///
public class GetWaitCaseResultJson : WxJsonResult
{
///
/// 未接入会话数量
///
public int count { get; set; }
///
/// 未接入会话列表,最多返回100条数据
///
public List waitcaselist { get; set; }
}
public class SingleWaitCase
{
///
/// 客户openid
///
public string openid { get; set; }
///
/// 指定接待的客服,为空表示未指定客服
///
public string kf_account { get; set; }
///
/// 用户来访时间,UNIX时间戳
///
public string createtime { get; set; }
}
}