GetGroupMemberListRequest.php 272 B

12345678910111213141516171819202122232425
  1. <?php
  2. /**
  3. * 请求结构体
  4. * @author auto create
  5. */
  6. class GetGroupMemberListRequest
  7. {
  8. /**
  9. * 群ID
  10. **/
  11. public $chatid;
  12. /**
  13. * 本次请求返回的群成员列表数量
  14. **/
  15. public $length;
  16. /**
  17. * 群成员列表偏移
  18. **/
  19. public $offset;
  20. }
  21. ?>