/** * 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 { ConceptChange } from './ConceptChange'; /** * * @export * @interface QuizConceptSummary */ export interface QuizConceptSummary { /** * * @type {Array} * @memberof QuizConceptSummary */ concepts: Array; /** * Study objective this quiz's chat is linked to, or null if the quiz wasn't started from a study objective * @type {string} * @memberof QuizConceptSummary */ studyObjectiveId: string | null; } /** * Check if a given object implements the QuizConceptSummary interface. */ export declare function instanceOfQuizConceptSummary(value: object): value is QuizConceptSummary; export declare function QuizConceptSummaryFromJSON(json: any): QuizConceptSummary; export declare function QuizConceptSummaryFromJSONTyped(json: any, ignoreDiscriminator: boolean): QuizConceptSummary; export declare function QuizConceptSummaryToJSON(json: any): QuizConceptSummary; export declare function QuizConceptSummaryToJSONTyped(value?: QuizConceptSummary | null, ignoreDiscriminator?: boolean): any;