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