ImSummaryResponse.php 809 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. <?php
  2. /**
  3. * 结果对象
  4. * @author auto create
  5. */
  6. class ImSummaryResponse
  7. {
  8. /**
  9. * 活跃群数(当日)
  10. **/
  11. public $active_group_count;
  12. /**
  13. * 单聊用户数
  14. **/
  15. public $chat_user_count;
  16. /**
  17. * 群聊用户数
  18. **/
  19. public $group_chat_user_count;
  20. /**
  21. * 总群数
  22. **/
  23. public $group_count;
  24. /**
  25. * 群聊消息数
  26. **/
  27. public $group_message_count;
  28. /**
  29. * 发送群文件数(当日)
  30. **/
  31. public $group_send_file_message_count;
  32. /**
  33. * 人均发送消息数
  34. **/
  35. public $message_avg_count;
  36. /**
  37. * 消息数
  38. **/
  39. public $message_total_count;
  40. /**
  41. * 聊天用户数
  42. **/
  43. public $message_user_count;
  44. /**
  45. * 新增群数(当日)
  46. **/
  47. public $new_group_count;
  48. /**
  49. * 单聊消息数
  50. **/
  51. public $single_message_count;
  52. }
  53. ?>