/** * Serializer for setting student mentor creation permission */ export type SetStudentMentorCreationPermission = { /** * The platform key where the permission should be changed */ platform_key: string; /** * Whether to allow students to create mentors (true) or not (false) */ allow_students_to_create_mentors: boolean; };