Items.php 1014 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. <?php
  2. /**
  3. * 日程的实体
  4. * @author auto create
  5. */
  6. class Items
  7. {
  8. /**
  9. * 参与者,考虑性能问题,该字段不向外透出
  10. **/
  11. public $attendees;
  12. /**
  13. * 创建时间
  14. **/
  15. public $created;
  16. /**
  17. * 内容描述
  18. **/
  19. public $description;
  20. /**
  21. * 结束时间
  22. **/
  23. public $end;
  24. /**
  25. * 日程事件id
  26. **/
  27. public $id;
  28. /**
  29. * 地点
  30. **/
  31. public $location;
  32. /**
  33. * 组织者
  34. **/
  35. public $organizer;
  36. /**
  37. * 循环的规则
  38. **/
  39. public $recurrence;
  40. /**
  41. * 循环日程中对应的序列id
  42. **/
  43. public $recurrence_id;
  44. /**
  45. * 响应状态(accepted, declined, needsAction)
  46. **/
  47. public $response_status;
  48. /**
  49. * 开始时间
  50. **/
  51. public $start;
  52. /**
  53. * 状态(confirmed、cancelled)
  54. **/
  55. public $status;
  56. /**
  57. * 标题简述
  58. **/
  59. public $summary;
  60. /**
  61. * 日程的唯一ID, 周期日程的所有序列的unique_id为同一个
  62. **/
  63. public $unique_id;
  64. /**
  65. * 最后一次更新时间
  66. **/
  67. public $updated;
  68. }
  69. ?>