import type * as Square from "../index"; /** * Represents an output from a call to [SearchVendors](api-endpoint:Vendors-SearchVendors). */ export interface SearchVendorsResponse { /** Errors encountered when the request fails. */ errors?: Square.Error_[]; /** The [Vendor](entity:Vendor) objects matching the specified search filter. */ vendors?: Square.Vendor[]; /** * The pagination cursor to be used in a subsequent request. If unset, * this is the final response. * * See the [Pagination](https://developer.squareup.com/docs/working-with-apis/pagination) guide for more information. */ cursor?: string; }