Module Values.KnownFraudsterRiskSource

Contains details produced as a result of performing known fraudster risk analysis on a speaker.

Sourcetype nonrec t = {
  1. generatedFraudsterId : GeneratedFraudsterId.t option;
    (*

    The identifier of the fraudster that is the closest match to the speaker. If there are no fraudsters registered in a given domain, or if there are no fraudsters with a non-zero RiskScore, this value is null.

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

    The score indicating the likelihood the speaker is a known fraudster.

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