/** * 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 QuizSession */ export interface QuizSession { /** * * @type {string} * @memberof QuizSession */ id: string; /** * * @type {string} * @memberof QuizSession */ quizId: string; /** * * @type {string} * @memberof QuizSession */ accountUserId: string; /** * * @type {string} * @memberof QuizSession */ status: QuizSessionStatusEnum; /** * * @type {Date} * @memberof QuizSession */ startedAt: Date; /** * * @type {Date} * @memberof QuizSession */ completedAt?: Date | null; } /** * @export */ export declare const QuizSessionStatusEnum: { readonly Active: "active"; readonly Completed: "completed"; readonly Abandoned: "abandoned"; }; export type QuizSessionStatusEnum = typeof QuizSessionStatusEnum[keyof typeof QuizSessionStatusEnum]; /** * Check if a given object implements the QuizSession interface. */ export declare function instanceOfQuizSession(value: object): value is QuizSession; export declare function QuizSessionFromJSON(json: any): QuizSession; export declare function QuizSessionFromJSONTyped(json: any, ignoreDiscriminator: boolean): QuizSession; export declare function QuizSessionToJSON(json: any): QuizSession; export declare function QuizSessionToJSONTyped(value?: QuizSession | null, ignoreDiscriminator?: boolean): any;