import type * as Square from "../index"; /** * The response to retrieve payout records entries. */ export interface ListPayoutEntriesResponse { /** The requested list of payout entries, ordered with the given or default sort order. */ payoutEntries?: Square.PayoutEntry[]; /** * The pagination cursor to be used in a subsequent request. If empty, this is the final response. * For more information, see [Pagination](https://developer.squareup.com/docs/build-basics/common-api-patterns/pagination). */ cursor?: string; /** Information about errors encountered during the request. */ errors?: Square.Error_[]; }