import type * as Square from "../index"; /** * Describes a `ListInvoice` response. */ export interface ListInvoicesResponse { /** The invoices retrieved. */ invoices?: Square.Invoice[]; /** * When a response is truncated, it includes a cursor that you can use in a * subsequent request to retrieve the next set of invoices. 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_[]; }