import type * as Square from "../index"; /** * Defines the fields that are included in the request body for the * [BulkRetrieveChannels](api-endpoint:Channels-BulkRetrieveChannels) endpoint. */ export interface BulkRetrieveChannelsResponse { /** Information about errors encountered during the request. */ errors?: Square.Error_[]; /** * A map of channel IDs to channel responses which tell whether * retrieval for a specific channel is success or not. * Channel response of a success retrieval would contain channel info * whereas channel response of a failed retrieval would have error info. */ responses?: Record; }