import type * as Square from "../index"; /** * Represents a response from a bulk update request containing the updated `TeamMember` objects or error messages. */ export interface BatchUpdateTeamMembersResponse { /** The successfully updated `TeamMember` objects. Each key is the `team_member_id` that maps to the `UpdateTeamMemberRequest`. */ teamMembers?: Record; /** The errors that occurred during the request. */ errors?: Square.Error_[]; }