/** * 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. */ import type { ScoreByTypeValue } from './ScoreByTypeValue'; /** * * @export * @interface QuizSessionSummaryScore */ export interface QuizSessionSummaryScore { /** * * @type {number} * @memberof QuizSessionSummaryScore */ totalCorrect: number; /** * * @type {number} * @memberof QuizSessionSummaryScore */ totalQuestions: number; /** * * @type {{ [key: string]: ScoreByTypeValue; }} * @memberof QuizSessionSummaryScore */ byType: { [key: string]: ScoreByTypeValue; }; } /** * Check if a given object implements the QuizSessionSummaryScore interface. */ export declare function instanceOfQuizSessionSummaryScore(value: object): value is QuizSessionSummaryScore; export declare function QuizSessionSummaryScoreFromJSON(json: any): QuizSessionSummaryScore; export declare function QuizSessionSummaryScoreFromJSONTyped(json: any, ignoreDiscriminator: boolean): QuizSessionSummaryScore; export declare function QuizSessionSummaryScoreToJSON(json: any): QuizSessionSummaryScore; export declare function QuizSessionSummaryScoreToJSONTyped(value?: QuizSessionSummaryScore | null, ignoreDiscriminator?: boolean): any;