/** * SmartyMeet Dev03 API REST * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.1 * Contact: developer@smartymeet.com * * 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 { AnswerSchemaValueOneOf } from './AnswerSchemaValueOneOf'; /** * @type AnswerSchemaValue * Non-file answer payload. Discriminated by questionType: * single-choice -> string (option id) * multiple-choice -> string[] (option ids) * scale -> number * open-text -> string * ranking -> string[] (option ids in order) * situational-judgment -> { best: string; worst: string } * file-upload -> usually empty / null (use `files`) * video-recording -> usually empty / null (use `files`) * @export */ export type AnswerSchemaValue = AnswerSchemaValueOneOf | Array | number | string; export declare function AnswerSchemaValueFromJSON(json: any): AnswerSchemaValue; export declare function AnswerSchemaValueFromJSONTyped(json: any, ignoreDiscriminator: boolean): AnswerSchemaValue; export declare function AnswerSchemaValueToJSON(json: any): any; export declare function AnswerSchemaValueToJSONTyped(value?: AnswerSchemaValue | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=AnswerSchemaValue.d.ts.map