/** * 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 { AttemptEvaluationSchemaPerQuestionInner } from './AttemptEvaluationSchemaPerQuestionInner'; /** * AI scoring output. Populated by the evaluation Step Function * after the candidate submits. Hidden from the candidate response * while status is below `evaluated`. * @export * @interface AttemptEvaluationSchema */ export interface AttemptEvaluationSchema { /** * * @type {AttemptEvaluationSchemaStatusEnum} * @memberof AttemptEvaluationSchema */ status?: AttemptEvaluationSchemaStatusEnum; /** * Aggregate score 0-100. * @type {number} * @memberof AttemptEvaluationSchema */ overallScore?: number; /** * Threshold copied from the template at evaluation time. * @type {number} * @memberof AttemptEvaluationSchema */ passingScore?: number; /** * * @type {boolean} * @memberof AttemptEvaluationSchema */ passed?: boolean; /** * * @type {Array} * @memberof AttemptEvaluationSchema */ perQuestion?: Array; /** * AI-generated 2-3 paragraph plain-language summary of the candidate's performance. * @type {string} * @memberof AttemptEvaluationSchema */ summary?: string; /** * * @type {Date} * @memberof AttemptEvaluationSchema */ evaluatedAt?: Date; /** * * @type {string} * @memberof AttemptEvaluationSchema */ evaluatorVersion?: string; /** * Set only when status=failed. * @type {string} * @memberof AttemptEvaluationSchema */ error?: string; } /** * @export */ export declare const AttemptEvaluationSchemaStatusEnum: { readonly Pending: "pending"; readonly Running: "running"; readonly Done: "done"; readonly Failed: "failed"; }; export type AttemptEvaluationSchemaStatusEnum = typeof AttemptEvaluationSchemaStatusEnum[keyof typeof AttemptEvaluationSchemaStatusEnum]; /** * Check if a given object implements the AttemptEvaluationSchema interface. */ export declare function instanceOfAttemptEvaluationSchema(value: object): value is AttemptEvaluationSchema; export declare function AttemptEvaluationSchemaFromJSON(json: any): AttemptEvaluationSchema; export declare function AttemptEvaluationSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): AttemptEvaluationSchema; export declare function AttemptEvaluationSchemaToJSON(json: any): AttemptEvaluationSchema; export declare function AttemptEvaluationSchemaToJSONTyped(value?: AttemptEvaluationSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=AttemptEvaluationSchema.d.ts.map