import type * as Square from "../index"; /** * The response to a request to update a `Shift`. The response contains * the updated `Shift` object and might contain a set of `Error` objects if * the request resulted in errors. */ export interface UpdateShiftResponse { /** The updated `Shift`. */ shift?: Square.Shift; /** Any errors that occurred during the request. */ errors?: Square.Error_[]; }