INPUT_OBJECT

InterruptScheduleInput

The input to interrupt a schedule.

link GraphQL Schema definition

1input InterruptScheduleInput {
4
2# The end time when the schedule will no longer be disabled.
3endAt: Time!
7
5# The reason the schedule was disabled.
6reason: ScheduleInterruptionReason!
10
8# The id of the schedule.
9scheduleID: ID!
13
11# The start time when the schedule will be disabled.
12startAt: Time!
17
14# The geographic timezone of the new segment defined by IANA; i.e.
15# "America/Los_Angeles".
16timezone: String!
18}