import type * as Square from "../index"; /** * Response payload for the [BulkRetrieveTeamMemberBookingProfiles](api-endpoint:Bookings-BulkRetrieveTeamMemberBookingProfiles) endpoint. */ export interface BulkRetrieveTeamMemberBookingProfilesResponse { /** The returned team members' booking profiles, as a map with `team_member_id` as the key and [TeamMemberBookingProfile](entity:TeamMemberBookingProfile) the value. */ teamMemberBookingProfiles?: Record; /** Errors that occurred during the request. */ errors?: Square.Error_[]; }