Repeated occurrence of an event in a time range.

Export

Recurrence

interface Recurrence {
    daysOfMonth?: number[];
    daysOfWeek?: DayOfWeek[];
    endTime: string;
}

Properties

daysOfMonth?: number[]

Days of the month when recurrence is valid.

Memberof

Recurrence

daysOfWeek?: DayOfWeek[]

Days of the week when recurrence is valid. If the schedule is valid every Monday, input will only contain MONDAY in the list.

Memberof

Recurrence

endTime: string

End time of the recurrence.

Memberof

Recurrence