/** * 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 { QuestionResponse } from './QuestionResponse'; /** * The set of responses to a Quiz * @export * @interface QuizResponse */ export interface QuizResponse { /** * The unique ID for this response * @type {number} * @memberof QuizResponse */ id?: number; /** * The ID of the Quiz to which this is a response * @type {number} * @memberof QuizResponse */ quizId?: number; /** * The unique identifier of the one creating the response * @type {string} * @memberof QuizResponse */ createdBy?: string; /** * When this response was created * @type {string} * @memberof QuizResponse */ createdOn?: string; /** * The list of responses to the questions in the Quiz * @type {Array} * @memberof QuizResponse */ questionResponses?: Array; } /** * Check if a given object implements the QuizResponse interface. */ export declare function instanceOfQuizResponse(value: object): value is QuizResponse; export declare function QuizResponseFromJSON(json: any): QuizResponse; export declare function QuizResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): QuizResponse; export declare function QuizResponseToJSON(json: any): QuizResponse; export declare function QuizResponseToJSONTyped(value?: QuizResponse | null, ignoreDiscriminator?: boolean): any;