/** * Athena API * REST API for the Athena system * * The version of the OpenAPI document: 1.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * * @export * @interface ChatRequestQuizContextCurrentQuestion */ export interface ChatRequestQuizContextCurrentQuestion { /** * * @type {string} * @memberof ChatRequestQuizContextCurrentQuestion */ type: string; /** * * @type {string} * @memberof ChatRequestQuizContextCurrentQuestion */ question: string; /** * * @type {string} * @memberof ChatRequestQuizContextCurrentQuestion */ correctAnswer: string; /** * * @type {string} * @memberof ChatRequestQuizContextCurrentQuestion */ explanation?: string | null; } /** * Check if a given object implements the ChatRequestQuizContextCurrentQuestion interface. */ export declare function instanceOfChatRequestQuizContextCurrentQuestion(value: object): value is ChatRequestQuizContextCurrentQuestion; export declare function ChatRequestQuizContextCurrentQuestionFromJSON(json: any): ChatRequestQuizContextCurrentQuestion; export declare function ChatRequestQuizContextCurrentQuestionFromJSONTyped(json: any, ignoreDiscriminator: boolean): ChatRequestQuizContextCurrentQuestion; export declare function ChatRequestQuizContextCurrentQuestionToJSON(json: any): ChatRequestQuizContextCurrentQuestion; export declare function ChatRequestQuizContextCurrentQuestionToJSONTyped(value?: ChatRequestQuizContextCurrentQuestion | null, ignoreDiscriminator?: boolean): any;