import type * as Square from "../index"; /** * The response to a request for `Shift` objects. The response contains * the requested `Shift` objects and might contain a set of `Error` objects if * the request resulted in errors. */ export interface SearchShiftsResponse { /** Shifts. */ shifts?: Square.Shift[]; /** An opaque cursor for fetching the next page. */ cursor?: string; /** Any errors that occurred during the request. */ errors?: Square.Error_[]; }