Module Values.RegistrationConfigSource

The registration configuration to be used during the batch fraudster registration job.

Sourcetype nonrec t = {
  1. duplicateRegistrationAction : DuplicateRegistrationAction.t option;
    (*

    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.

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

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

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

    The identifiers of watchlists that a fraudster is registered to. If a watchlist isn't provided, the fraudsters are registered to the default watchlist.

    *)
}
Sourceval make : ?duplicateRegistrationAction:??? -> ?fraudsterSimilarityThreshold:??? -> ?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