CloseSessionDTO.php 695 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. <?php
  2. /**
  3. * 关闭会话
  4. * @author auto create
  5. */
  6. class CloseSessionDTO
  7. {
  8. /**
  9. * 客服所在bu
  10. **/
  11. public $bu_id;
  12. /**
  13. * 钉钉的corpId
  14. **/
  15. public $ding_corp_id;
  16. /**
  17. * 实例id
  18. **/
  19. public $open_instance_id;
  20. /**
  21. * 操作者id
  22. **/
  23. public $operator_id;
  24. /**
  25. * 4,小二;1,会员
  26. **/
  27. public $operator_type;
  28. /**
  29. * 1,智能客服;1001,经济体版本
  30. **/
  31. public $production_type;
  32. /**
  33. * 关闭原因,memberIsSilent/heartBeatBreak/memberCloseTheSession
  34. **/
  35. public $reason;
  36. /**
  37. * 客服的id
  38. **/
  39. public $service_id;
  40. /**
  41. * 会话来源
  42. **/
  43. public $session_source;
  44. /**
  45. * 会话id
  46. **/
  47. public $sid;
  48. }
  49. ?>