/** * Synapse REST API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: v1 * * * 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 { QuestionVariety } from './QuestionVariety'; /** * Schema for a quiz and, optionally, its answer key * @export * @interface QuizGenerator */ export interface QuizGenerator { /** * the ID of this Quiz * @type {number} * @memberof QuizGenerator */ id?: number; /** * Content preceding the series of questions * @type {string} * @memberof QuizGenerator */ header?: string; /** * Minimum number of questions to answer correctly to pass * @type {number} * @memberof QuizGenerator */ minimumScore?: number; /** * The questions in the Quiz * @type {Array} * @memberof QuizGenerator */ questions?: Array; } /** * Check if a given object implements the QuizGenerator interface. */ export declare function instanceOfQuizGenerator(value: object): value is QuizGenerator; export declare function QuizGeneratorFromJSON(json: any): QuizGenerator; export declare function QuizGeneratorFromJSONTyped(json: any, ignoreDiscriminator: boolean): QuizGenerator; export declare function QuizGeneratorToJSON(json: any): QuizGenerator; export declare function QuizGeneratorToJSONTyped(value?: QuizGenerator | null, ignoreDiscriminator?: boolean): any;