/** * 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 Score */ export interface Score { /** * * @type {number} * @memberof Score */ totalCorrect: number; /** * * @type {number} * @memberof Score */ totalQuestions: number; /** * * @type {{ [key: string]: ScoreByTypeValue; }} * @memberof Score */ byType: { [key: string]: ScoreByTypeValue; }; } /** * Check if a given object implements the Score interface. */ export declare function instanceOfScore(value: object): value is Score; export declare function ScoreFromJSON(json: any): Score; export declare function ScoreFromJSONTyped(json: any, ignoreDiscriminator: boolean): Score; export declare function ScoreToJSON(json: any): Score; export declare function ScoreToJSONTyped(value?: Score | null, ignoreDiscriminator?: boolean): any;