/** * 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 { Question } from './Question'; /** * Schema for a quiz and, optionally, its answer key * @export * @interface Quiz */ export interface Quiz { /** * the ID of this Quiz * @type {number} * @memberof Quiz */ id?: number; /** * Content preceding the series of questions * @type {string} * @memberof Quiz */ header?: string; /** * The questions in the Quiz * @type {Array} * @memberof Quiz */ questions?: Array; } /** * Check if a given object implements the Quiz interface. */ export declare function instanceOfQuiz(value: object): value is Quiz; export declare function QuizFromJSON(json: any): Quiz; export declare function QuizFromJSONTyped(json: any, ignoreDiscriminator: boolean): Quiz; export declare function QuizToJSON(json: any): Quiz; export declare function QuizToJSONTyped(value?: Quiz | null, ignoreDiscriminator?: boolean): any;