/** * Response serializer for accessible mentors by email. */ export type AccessibleMentorsByEmailResponse = { /** * List of mentor unique IDs */ readonly mentors: Array; /** * The user ID that mentors belong to when all_mentors is False */ readonly user_id: number | null; };