Event.php 783 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. <?php
  2. /**
  3. * 日程创建对象
  4. * @author auto create
  5. */
  6. class Event
  7. {
  8. /**
  9. * 日程参与者,参与人数最多100人,包括组织者
  10. **/
  11. public $attendees;
  12. /**
  13. * 日历ID,目前仅支持传primary,表示修改当前用户“我的日程”下的日程
  14. **/
  15. public $calendar_id;
  16. /**
  17. * 日程描述
  18. **/
  19. public $description;
  20. /**
  21. * 结束时间
  22. **/
  23. public $end;
  24. /**
  25. * 日程Id
  26. **/
  27. public $event_id;
  28. /**
  29. * 地址
  30. **/
  31. public $location;
  32. /**
  33. * 日程组织者,暂不支持修改
  34. **/
  35. public $organizer;
  36. /**
  37. * 会议开始前提醒
  38. **/
  39. public $reminder;
  40. /**
  41. * 开始时间
  42. **/
  43. public $start;
  44. /**
  45. * 日程主题
  46. **/
  47. public $summary;
  48. }
  49. ?>