/** * Request serializer for accessible mentors by email endpoint. */ export type AccessibleMentorsByEmailRequest = { /** * The user email to check mentor access for */ email?: string; /** * If true, return all mentors in the platform (ignoring email if present). If false (default), return only mentors owned by the user's email. */ all_mentors?: boolean; };