/* generated using openapi-typescript-codegen -- do not edit */ /* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ import type { InputQuestion } from './InputQuestion'; /** * Serializer for incoming request data that includes initial questions and the username. * * Attributes: * username (str): Username of the requesting student or user. * initial_questions (list[InputQuestionSerializer]): List of initial questions provided by the LMS. * question_count (int): Number of questions the mentor (llm) should generate */ export type QuestionRequest = { username: string; initial_questions: Array; question_count?: number; subject: string; };