import type * as Square from "../index"; /** * Represents an output from a call to [BulkRetrieveVendors](api-endpoint:Vendors-BulkRetrieveVendors). */ export interface BatchGetVendorsResponse { /** Any errors that occurred during the request. */ errors?: Square.Error_[]; /** * The set of [RetrieveVendorResponse](entity:RetrieveVendorResponse) objects encapsulating successfully retrieved [Vendor](entity:Vendor) * objects or error responses for failed attempts. The set is represented by * a collection of `Vendor`-ID/`Vendor`-object or `Vendor`-ID/error-object pairs. */ responses?: Record; }