import type * as Square from "../index"; /** * Represents an [UpdateScheduledShift](api-endpoint:Labor-UpdateScheduledShift) response. * Either `scheduled_shift` or `errors` is present in the response. */ export interface UpdateScheduledShiftResponse { /** * The updated scheduled shift. To make the changes public, call * [PublishScheduledShift](api-endpoint:Labor-PublishScheduledShift) or * [BulkPublishScheduledShifts](api-endpoint:Labor-BulkPublishScheduledShifts). */ scheduledShift?: Square.ScheduledShift; /** Any errors that occurred during the request. */ errors?: Square.Error_[]; }