Interface CreateScheduledEventExceptionOptions

interface CreateScheduledEventExceptionOptions {
    isCanceled?: null | boolean;
    originalScheduledStartTime: string;
    reason?: string;
    scheduledEndTime?: null | string;
    scheduledStartTime?: null | string;
}

Properties

isCanceled?: null | boolean

Whether the scheduled event will be skipped on this recurrence.

originalScheduledStartTime: string

When the scheduled event would have started without the exception.

reason?: string

The reason for creating the scheduled event exception.

scheduledEndTime?: null | string

The scheduled event's modified end time for this recurrence.

scheduledStartTime?: null | string

The scheduled event's modified start time for this recurrence.