/** * 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 PracticeQuiz */ export interface PracticeQuiz { /** * Chat id associated with the practice-quiz slot. * @type {string} * @memberof PracticeQuiz */ chatId: string; /** * True when this call created a new chat for the slot. False when an existing chat was returned (find-or-create idempotent path). * @type {boolean} * @memberof PracticeQuiz */ isNew: boolean; } /** * Check if a given object implements the PracticeQuiz interface. */ export declare function instanceOfPracticeQuiz(value: object): value is PracticeQuiz; export declare function PracticeQuizFromJSON(json: any): PracticeQuiz; export declare function PracticeQuizFromJSONTyped(json: any, ignoreDiscriminator: boolean): PracticeQuiz; export declare function PracticeQuizToJSON(json: any): PracticeQuiz; export declare function PracticeQuizToJSONTyped(value?: PracticeQuiz | null, ignoreDiscriminator?: boolean): any;