ChatInfo.php 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. <?php
  2. /**
  3. * chat_info
  4. * @author auto create
  5. */
  6. class ChatInfo
  7. {
  8. /**
  9. * agentidlist
  10. **/
  11. public $agentidlist;
  12. /**
  13. * 是否全员禁用 0 不禁言 1 全员禁言
  14. **/
  15. public $chat_banned_type;
  16. /**
  17. * conversationTag
  18. **/
  19. public $conversation_tag;
  20. /**
  21. * extidlist
  22. **/
  23. public $extidlist;
  24. /**
  25. * 群头像mediaId
  26. **/
  27. public $icon;
  28. /**
  29. * 仅群主和群管理员可管理 0否 1 是
  30. **/
  31. public $management_type;
  32. /**
  33. * 尽群主和管理员可@所有人 0 否 1 是
  34. **/
  35. public $mention_all_authority;
  36. /**
  37. * name
  38. **/
  39. public $name;
  40. /**
  41. * owner
  42. **/
  43. public $owner;
  44. /**
  45. * 是否可以搜索群名 0 不可以 1可以搜索
  46. **/
  47. public $searchable;
  48. /**
  49. * 新成员可查看聊天历史 0否 1是
  50. **/
  51. public $show_history_type;
  52. /**
  53. * 群状态 1-正常 2-已解散
  54. **/
  55. public $status;
  56. /**
  57. * useridlist
  58. **/
  59. public $useridlist;
  60. /**
  61. * 入群需群主或群管理员同意 0不需要 1需要
  62. **/
  63. public $validation_type;
  64. }
  65. ?>