import type * as Square from "../index"; export interface SearchTerminalActionsResponse { /** Information on errors encountered during the request. */ errors?: Square.Error_[]; /** The requested search result of `TerminalAction`s. */ action?: Square.TerminalAction[]; /** * 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; }