import type * as Square from "../index"; /** * Response payload for bulk retrieval of bookings. */ export interface BulkRetrieveBookingsResponse { /** Requested bookings returned as a map containing `booking_id` as the key and `RetrieveBookingResponse` as the value. */ bookings?: Record; /** Errors that occurred during the request. */ errors?: Square.Error_[]; }