OBJECT
O365CalendarEventRecurrence
Description
The recurrence pattern of an O365 calendar event.
link GraphQL Schema definition
- type O365CalendarEventRecurrence {
- # The absolute monthly recurrence pattern (e.g. 21st of every 3 months).
- : AbsoluteMonthlyRecurrencePattern
- # The absolute yearly recurrence pattern (e.g. 25th of December).
- : AbsoluteYearlyRecurrencePattern
- # The daily recurrence pattern (e.g. Every 3 days).
- : DailyRecurrencePattern
- # A recurrence range with an end date.
- : EndDateRecurrenceRange
- # A recurrence range with no end date.
- : NoEndRecurrenceRange
- # A recurrence range with a specified number of occurrences.
- : NumberedRecurrenceRange
- # The relative monthly recurrence pattern (e.g. Second Thursday or Friday of every
- # other month).
- : RelativeMonthlyRecurrencePattern
- # The relative yearly recurrence pattern (e.g. First Tuesday of November).
- : RelativeYearlyRecurrencePattern
- # The weekly recurrence pattern (e.g. Every other Monday).
- : WeeklyRecurrencePattern
- }