Module Values.EnrollmentJobFraudDetectionConfigSource

The fraud detection configuration to be used during the batch speaker enrollment job.

Sourcetype nonrec t = {
  1. fraudDetectionAction : FraudDetectionAction.t option;
    (*

    The action to take when the given speaker is flagged by the fraud detection system. The default value is FAIL, which fails the speaker enrollment. Changing this value to IGNORE results in the speaker being enrolled even if they are flagged by the fraud detection system.

    *)
  2. riskThreshold : Score.t option;
    (*

    Threshold value for determining whether the speaker is a high risk to be fraudulent. If the detected risk score calculated by Voice ID is greater than or equal to the threshold, the speaker is considered a fraudster.

    *)
  3. watchlistIds : EnrollmentJobFraudDetectionConfigWatchlistIds.t option;
    (*

    The identifier of watchlists against which fraud detection is performed.

    *)
}
Sourceval make : ?fraudDetectionAction:??? -> ?riskThreshold:??? -> ?watchlistIds:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of Score.t | `List of [> `String of WatchlistId.t ] list ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t