ServiceGroupQueryResponse.php 356 B

1234567891011121314151617181920212223242526272829303132333435
  1. <?php
  2. /**
  3. * 结果
  4. * @author auto create
  5. */
  6. class ServiceGroupQueryResponse
  7. {
  8. /**
  9. * 管理员数量
  10. **/
  11. public $admin_count;
  12. /**
  13. * 全部成员数量
  14. **/
  15. public $member_count;
  16. /**
  17. * 开放的会话id
  18. **/
  19. public $open_conversation_id;
  20. /**
  21. * 群标题
  22. **/
  23. public $title;
  24. /**
  25. * 群链接
  26. **/
  27. public $url;
  28. }
  29. ?>