OBJECT
UpdateScheduleSegmentError
UpdateScheduleSegmentError is a wrapper for error associated with the UpdateScheduleSegment mutation.
link GraphQL Schema definition
1 type UpdateScheduleSegmentError { 2 3 # Error code. 4 : UpdateScheduleSegmentErrorCode! 5 6 # If the error is related to overlapping segments, provide the existing segment 7 # causing a conflict. 8 : ScheduleSegment 9 10 # If the error is related to an input out of service-defined bounds, provide the 11 # maximum allowed value. 12 : Int 13 14 # If the error is related to an input out of service-defined bounds, provide the 15 # miniimum allowed value. 16 : Int 17 18 }