12345678910111213141516171819202122232425 |
- <?php
- /**
- * result
- * @author auto create
- */
- class ListCourseParticipantResponse
- {
-
- /**
- * 表示是否还有更多的数据
- **/
- public $has_more;
-
- /**
- * list
- **/
- public $list;
-
- /**
- * 表示下一次分页的游标,如果next_corsor为null或者has_more为false,表示没有更多的分页数据
- **/
- public $next_cursor;
- }
- ?>
|