/** * 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 AttemptEvaluationSchemaPerQuestionInner */ export interface AttemptEvaluationSchemaPerQuestionInner { /** * * @type {string} * @memberof AttemptEvaluationSchemaPerQuestionInner */ questionId: string; /** * * @type {number} * @memberof AttemptEvaluationSchemaPerQuestionInner */ score: number; /** * * @type {number} * @memberof AttemptEvaluationSchemaPerQuestionInner */ maxScore?: number; /** * 1-2 sentence explanation in the candidate's language. * @type {string} * @memberof AttemptEvaluationSchemaPerQuestionInner */ feedback?: string; /** * Recruiter-only. Stripped from guest responses. * @type {Array} * @memberof AttemptEvaluationSchemaPerQuestionInner */ rubricMatched?: Array; } /** * Check if a given object implements the AttemptEvaluationSchemaPerQuestionInner interface. */ export declare function instanceOfAttemptEvaluationSchemaPerQuestionInner(value: object): value is AttemptEvaluationSchemaPerQuestionInner; export declare function AttemptEvaluationSchemaPerQuestionInnerFromJSON(json: any): AttemptEvaluationSchemaPerQuestionInner; export declare function AttemptEvaluationSchemaPerQuestionInnerFromJSONTyped(json: any, ignoreDiscriminator: boolean): AttemptEvaluationSchemaPerQuestionInner; export declare function AttemptEvaluationSchemaPerQuestionInnerToJSON(json: any): AttemptEvaluationSchemaPerQuestionInner; export declare function AttemptEvaluationSchemaPerQuestionInnerToJSONTyped(value?: AttemptEvaluationSchemaPerQuestionInner | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=AttemptEvaluationSchemaPerQuestionInner.d.ts.map