/** * 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'; import type { QuestionResponse } from './QuestionResponse'; /** * A user response and whether it is correct. * @export * @interface ResponseCorrectness */ export interface ResponseCorrectness { /** * * @type {Question} * @memberof ResponseCorrectness */ question?: Question; /** * * @type {QuestionResponse} * @memberof ResponseCorrectness */ response?: QuestionResponse; /** * Is the response correct? * @type {boolean} * @memberof ResponseCorrectness */ isCorrect?: boolean; } /** * Check if a given object implements the ResponseCorrectness interface. */ export declare function instanceOfResponseCorrectness(value: object): value is ResponseCorrectness; export declare function ResponseCorrectnessFromJSON(json: any): ResponseCorrectness; export declare function ResponseCorrectnessFromJSONTyped(json: any, ignoreDiscriminator: boolean): ResponseCorrectness; export declare function ResponseCorrectnessToJSON(json: any): ResponseCorrectness; export declare function ResponseCorrectnessToJSONTyped(value?: ResponseCorrectness | null, ignoreDiscriminator?: boolean): any;