/** * 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. */ /** * * @export * @interface QuestionSchemaOptionsInner */ export interface QuestionSchemaOptionsInner { /** * Stable option id - candidates' answers reference this. * @type {string} * @memberof QuestionSchemaOptionsInner */ id?: string; /** * * @type {{ [key: string]: string; }} * @memberof QuestionSchemaOptionsInner */ text?: { [key: string]: string; }; /** * Recruiter-only. Stripped server-side from guest responses. * @type {boolean} * @memberof QuestionSchemaOptionsInner */ isCorrect?: boolean; } /** * Check if a given object implements the QuestionSchemaOptionsInner interface. */ export declare function instanceOfQuestionSchemaOptionsInner(value: object): value is QuestionSchemaOptionsInner; export declare function QuestionSchemaOptionsInnerFromJSON(json: any): QuestionSchemaOptionsInner; export declare function QuestionSchemaOptionsInnerFromJSONTyped(json: any, ignoreDiscriminator: boolean): QuestionSchemaOptionsInner; export declare function QuestionSchemaOptionsInnerToJSON(json: any): QuestionSchemaOptionsInner; export declare function QuestionSchemaOptionsInnerToJSONTyped(value?: QuestionSchemaOptionsInner | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=QuestionSchemaOptionsInner.d.ts.map