ENUM

InterruptScheduleErrorCode

The possible errors.

link GraphQL Schema definition

1enum InterruptScheduleErrorCode {
2
3# Not authorized to disable the schedule.
4FORBIDDEN
5
6# The schedule was not found.
7NOT_FOUND
8
9# EndAt is too far in the future.
10END_TOO_FAR_IN_FUTURE
11
12# The argument is invalid and does not map to a known error.
13INVALID_ARGUMENT
14}