/** * 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. */ /** * One of the multiple choices in a multiple choice question * @export * @interface MultichoiceAnswer */ export interface MultichoiceAnswer { /** * An index unique within the scope the multiple choice question * @type {number} * @memberof MultichoiceAnswer */ answerIndex?: number; /** * The user-readable prompt or label for this answer * @type {string} * @memberof MultichoiceAnswer */ prompt?: string; /** * True if and only if this is a correct response * @type {boolean} * @memberof MultichoiceAnswer */ isCorrect?: boolean; } /** * Check if a given object implements the MultichoiceAnswer interface. */ export declare function instanceOfMultichoiceAnswer(value: object): value is MultichoiceAnswer; export declare function MultichoiceAnswerFromJSON(json: any): MultichoiceAnswer; export declare function MultichoiceAnswerFromJSONTyped(json: any, ignoreDiscriminator: boolean): MultichoiceAnswer; export declare function MultichoiceAnswerToJSON(json: any): MultichoiceAnswer; export declare function MultichoiceAnswerToJSONTyped(value?: MultichoiceAnswer | null, ignoreDiscriminator?: boolean): any;