/** * Athena API * REST API for the Athena system * * The version of the OpenAPI document: 1.0.0 * * * 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 ConceptAssessmentEntity */ export interface ConceptAssessmentEntity { /** * Concept UUID * @type {string} * @memberof ConceptAssessmentEntity */ conceptId: string; /** * Full concept name * @type {string} * @memberof ConceptAssessmentEntity */ name: string; /** * Short label (≤ 64 chars) * @type {string} * @memberof ConceptAssessmentEntity */ shortName: string; /** * Estimated competency (0–1) * @type {number} * @memberof ConceptAssessmentEntity */ strength: number; /** * Confidence in the estimate (0–1) * @type {number} * @memberof ConceptAssessmentEntity */ confidence: number; } /** * Check if a given object implements the ConceptAssessmentEntity interface. */ export declare function instanceOfConceptAssessmentEntity(value: object): value is ConceptAssessmentEntity; export declare function ConceptAssessmentEntityFromJSON(json: any): ConceptAssessmentEntity; export declare function ConceptAssessmentEntityFromJSONTyped(json: any, ignoreDiscriminator: boolean): ConceptAssessmentEntity; export declare function ConceptAssessmentEntityToJSON(json: any): ConceptAssessmentEntity; export declare function ConceptAssessmentEntityToJSONTyped(value?: ConceptAssessmentEntity | null, ignoreDiscriminator?: boolean): any;