GroupLiveViewerReq.php 416 B

1234567891011121314151617181920212223242526272829303132333435
  1. <?php
  2. /**
  3. * 请求对象
  4. * @author auto create
  5. */
  6. class GroupLiveViewerReq
  7. {
  8. /**
  9. * 群标识id
  10. **/
  11. public $cid;
  12. /**
  13. * 分页游标;首页请使用0,之后直接使用返回结果中的next_cursor
  14. **/
  15. public $cursor;
  16. /**
  17. * 直播uuid
  18. **/
  19. public $live_uuid;
  20. /**
  21. * 对外群id
  22. **/
  23. public $open_conversation_id;
  24. /**
  25. * 分页大小;不超过500
  26. **/
  27. public $size;
  28. }
  29. ?>