DecorationGroupQueryResponse.php 680 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. <?php
  2. /**
  3. * 返回结果
  4. * @author auto create
  5. */
  6. class DecorationGroupQueryResponse
  7. {
  8. /**
  9. * 入群链接(需特殊申请才返回)
  10. **/
  11. public $group_url;
  12. /**
  13. * 群头像
  14. **/
  15. public $icon;
  16. /**
  17. * 群配置
  18. **/
  19. public $management_options;
  20. /**
  21. * 群成员数量
  22. **/
  23. public $member_amount;
  24. /**
  25. * 群id
  26. **/
  27. public $open_conversation_id;
  28. /**
  29. * 群主id
  30. **/
  31. public $owner_staff_id;
  32. /**
  33. * 场景化数据,在特定场景群有数据
  34. **/
  35. public $scene_data;
  36. /**
  37. * 群管理id
  38. **/
  39. public $sub_admin_staff_ids;
  40. /**
  41. * 模板id
  42. **/
  43. public $template_id;
  44. /**
  45. * 群标题
  46. **/
  47. public $title;
  48. }
  49. ?>