/** * 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 QuizListItem */ export interface QuizListItem { /** * * @type {string} * @memberof QuizListItem */ id: string; /** * * @type {string} * @memberof QuizListItem */ accountUserId: string; /** * * @type {string} * @memberof QuizListItem */ chatId: string | null; /** * * @type {string} * @memberof QuizListItem */ title: string; /** * * @type {string} * @memberof QuizListItem */ topic: string; /** * * @type {string} * @memberof QuizListItem */ mode: QuizListItemModeEnum; /** * * @type {Date} * @memberof QuizListItem */ createdAt: Date; /** * * @type {number} * @memberof QuizListItem */ questionCount: number; } /** * @export */ export declare const QuizListItemModeEnum: { readonly Quiz: "quiz"; readonly Flashcards: "flashcards"; }; export type QuizListItemModeEnum = typeof QuizListItemModeEnum[keyof typeof QuizListItemModeEnum]; /** * Check if a given object implements the QuizListItem interface. */ export declare function instanceOfQuizListItem(value: object): value is QuizListItem; export declare function QuizListItemFromJSON(json: any): QuizListItem; export declare function QuizListItemFromJSONTyped(json: any, ignoreDiscriminator: boolean): QuizListItem; export declare function QuizListItemToJSON(json: any): QuizListItem; export declare function QuizListItemToJSONTyped(value?: QuizListItem | null, ignoreDiscriminator?: boolean): any;