Module Values.FraudDetectionConfigurationSource

The configuration used for performing fraud detection over a speaker during a session.

Sourcetype nonrec t = {
  1. riskThreshold : Score.t option;
    (*

    Threshold value for determining whether the speaker is a fraudster. If the detected risk score calculated by Voice ID is higher than the threshold, the speaker is considered a fraudster.

    *)
  2. watchlistId : WatchlistId.t option;
    (*

    The identifier of the watchlist against which fraud detection is performed.

    *)
}
Sourceval make : ?riskThreshold:??? -> ?watchlistId:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Score.t | `String of WatchlistId.t ]) 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