OBJECT

ScheduleInterruption

The interruption of a schedule.

link GraphQL Schema definition

1type ScheduleInterruption {
2
3# The end time when the schedule will no longer be disabled.
4endAt: Time!
5
6# The reason the schedule is disabled.
7reason: ScheduleInterruptionReason!
8
9# The start time when the schedule will be disabled.
10startAt: Time!
11
12}