EntityMatch

data class EntityMatch<T>(val match: T, val score: <Error class: unknown class>, val source: String)

Match for an entity

Parameters

T

The type of the entity being matched.

match

The matched entity.

score

The confidence score of the match, between 0 and 1.

source

The source of the match, e.g., the repository method that provided the match.

Constructors

Link copied to clipboard
constructor(match: T, score: <Error class: unknown class>, source: String)

Properties

Link copied to clipboard
open val match: T
Link copied to clipboard
open val score: <Error class: unknown class>
Link copied to clipboard