import type * as Square from "../index"; /** * Defines the fields that are included in the response body of * a request to the [ListCards](api-endpoint:Cards-ListCards) endpoint. * * Note: if there are errors processing the request, the card field will not be * present. */ export interface ListCardsResponse { /** Information on errors encountered during the request. */ errors?: Square.Error_[]; /** The requested list of `Card`s. */ cards?: Square.Card[]; /** * 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; }