Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

RegistrationConfig

import type { RegistrationConfig } from "https://aws-api.deno.dev/v0.4/services/voiceid.ts?docs=full";

The configuration defining the action to take when a duplicate fraudster is detected, and the similarity threshold to use for detecting a duplicate fraudster during a batch fraudster registration job.

interface RegistrationConfig {
DuplicateRegistrationAction?: DuplicateRegistrationAction | null;
FraudsterSimilarityThreshold?: number | null;
}

§Properties

§
DuplicateRegistrationAction?: DuplicateRegistrationAction | null
[src]

The action to take when a fraudster is identified as a duplicate. The default action is SKIP, which skips registering the duplicate fraudster. Setting the value to REGISTER_AS_NEW always registers a new fraudster into the specified domain.

§
FraudsterSimilarityThreshold?: number | null
[src]

The minimum similarity score between the new and old fraudsters in order to consider the new fraudster a duplicate.