OpenCalendarListResponse.php 310 B

12345678910111213141516171819202122232425
  1. <?php
  2. /**
  3. * api返回的结果对象
  4. * @author auto create
  5. */
  6. class OpenCalendarListResponse
  7. {
  8. /**
  9. * 日程的实体
  10. **/
  11. public $items;
  12. /**
  13. * 请求结果若还有更多,则返回下一页的token值
  14. **/
  15. public $next_page_token;
  16. /**
  17. * 文件夹描述
  18. **/
  19. public $summary;
  20. }
  21. ?>