@studyportals/bestfit-api-fe-client
Version:
10 lines (9 loc) • 490 B
TypeScript
import { ScoreDeterminantType } from '../../enumerations/score-determinant-type.enum';
import { AdvicePresentation, IAdvice } from '../advice/i-advice.interface';
export interface BestFitResult {
score?: number;
breakdown?: Map<ScoreDeterminantType, number>;
advice?: Map<ScoreDeterminantType, IAdvice<AdvicePresentation, AdvicePresentation>>;
qualificationCompleteness?: Map<ScoreDeterminantType, number>;
requirementCompleteness?: Map<ScoreDeterminantType, number>;
}