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