CustomPattern

data class CustomPattern(val regex: String, val tags: List<String>, val threshold: Float)

A data class representing a custom pattern to use for fingerprinting.

Constructors

Link copied to clipboard
constructor(regex: String, tags: List<String>, threshold: Float)

Properties

Link copied to clipboard

The regular expression to use for matching the pattern.

Link copied to clipboard

The list of tags to associate with the pattern.

Link copied to clipboard

The threshold value to use when calculating similarity scores for fingerprints.