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