GetWaitCaseResultJson.cs 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. /*----------------------------------------------------------------
  2. Copyright (C) 2019 Senparc
  3. 文件名:GetWaitCaseResultJson.cs
  4. 文件功能描述:获取未接入会话列表返回结果
  5. 创建标识:Senparc - 20150306
  6. ----------------------------------------------------------------*/
  7. using System.Collections.Generic;
  8. using Senparc.Weixin.Entities;
  9. namespace Senparc.Weixin.MP.AdvancedAPIs.CustomService
  10. {
  11. /// <summary>
  12. /// 获取未接入会话列表返回结果
  13. /// </summary>
  14. public class GetWaitCaseResultJson : WxJsonResult
  15. {
  16. /// <summary>
  17. /// 未接入会话数量
  18. /// </summary>
  19. public int count { get; set; }
  20. /// <summary>
  21. /// 未接入会话列表,最多返回100条数据
  22. /// </summary>
  23. public List<SingleWaitCase> waitcaselist { get; set; }
  24. }
  25. public class SingleWaitCase
  26. {
  27. /// <summary>
  28. /// 客户openid
  29. /// </summary>
  30. public string openid { get; set; }
  31. /// <summary>
  32. /// 指定接待的客服,为空表示未指定客服
  33. /// </summary>
  34. public string kf_account { get; set; }
  35. /// <summary>
  36. /// 用户来访时间,UNIX时间戳
  37. /// </summary>
  38. public string createtime { get; set; }
  39. }
  40. }