import type * as Square from "../index"; export interface SearchTerminalCheckoutsResponse { /** Information about errors encountered during the request. */ errors?: Square.Error_[]; /** The requested search result of `TerminalCheckout` objects. */ checkouts?: Square.TerminalCheckout[]; /** * The pagination cursor to be used in a subsequent request. If empty, * this is the final response. * * See [Pagination](https://developer.squareup.com/docs/build-basics/common-api-patterns/pagination) for more information. */ cursor?: string; }