/* generated using openapi-typescript-codegen -- do not edit */ /* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ import type { Answer } from './Answer'; /** * Serializer for individual question data, including possible answers. * * Attributes: * question_id (str): Unique identifier for the question. * text (str): The text of the question. * difficulty_level (Optional[int]): An optional difficulty level for the question. * options (list[AnswerSerializer]): List of possible answers for the question. */ export type LLMQuestion = { text: string; difficulty_level?: number; options: Array; };