/* generated using openapi-typescript-codegen -- do not edit */ /* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ /** * Serializes a user's default mentor as the underlying mentor's fields. * * Shaped like ``RecentlyAccessedMentorModelSerializer`` so the frontend can * render the default mentor the same way as starred/recent entries. */ export type UserDefaultMentor = { readonly id: number | null; readonly unique_id: string | null; readonly slug: string | null; readonly name: string | null; readonly description: string | null; readonly platform_key: string | null; readonly created_by: string | null; readonly student: string; readonly updated_at: string; };