import type * as Square from "../index"; /** * Represents a response from a create request containing the created `TeamMember` object or error messages. */ export interface CreateTeamMemberResponse { /** The successfully created `TeamMember` object. */ teamMember?: Square.TeamMember; /** The errors that occurred during the request. */ errors?: Square.Error_[]; }