ListCourseParticipantResponse.php 356 B

12345678910111213141516171819202122232425
  1. <?php
  2. /**
  3. * result
  4. * @author auto create
  5. */
  6. class ListCourseParticipantResponse
  7. {
  8. /**
  9. * 表示是否还有更多的数据
  10. **/
  11. public $has_more;
  12. /**
  13. * list
  14. **/
  15. public $list;
  16. /**
  17. * 表示下一次分页的游标,如果next_corsor为null或者has_more为false,表示没有更多的分页数据
  18. **/
  19. public $next_cursor;
  20. }
  21. ?>