/** * 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. */ /** * The text response to a TextFieldQuestion * @export * @interface TextFieldResponse */ export interface TextFieldResponse { /** * an index unique in the Quiz, used to refer to the question being answered * @type {number} * @memberof TextFieldResponse */ questionIndex?: number; /** * * @type {string} * @memberof TextFieldResponse */ concreteType: TextFieldResponseConcreteTypeEnum; /** * The response to the text-field question * @type {string} * @memberof TextFieldResponse */ response?: string; } /** * @export */ export declare const TextFieldResponseConcreteTypeEnum: { readonly org_sagebionetworks_repo_model_quiz_TextFieldResponse: "org.sagebionetworks.repo.model.quiz.TextFieldResponse"; }; export type TextFieldResponseConcreteTypeEnum = typeof TextFieldResponseConcreteTypeEnum[keyof typeof TextFieldResponseConcreteTypeEnum]; /** * Check if a given object implements the TextFieldResponse interface. */ export declare function instanceOfTextFieldResponse(value: object): value is TextFieldResponse; export declare function TextFieldResponseFromJSON(json: any): TextFieldResponse; export declare function TextFieldResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): TextFieldResponse; export declare function TextFieldResponseToJSON(json: any): TextFieldResponse; export declare function TextFieldResponseToJSONTyped(value?: TextFieldResponse | null, ignoreDiscriminator?: boolean): any;