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