OBJECT

CreateScheduleSegmentError

CreateScheduleSegmentError is a wrapper for error associated with the CreateScheduleSegment mutation.

link GraphQL Schema definition

1type CreateScheduleSegmentError {
2
3# Error code.
4code: CreateScheduleSegmentErrorCode!
5
6# If the error is related to overlapping segments, provide the existing segment
7# causing a conflict.
8conflictingSegment: ScheduleSegment
9
10# If the error is related to an input out of service-defined bounds, provide the
11# maximum allowed value.
12maximum: Int
13
14# If the error is related to an input out of service-defined bounds, provide the
15# minimum allowed value.
16minimum: Int
17
18}