Module Values.FraudsterSource

Contains all the information about a fraudster.

Sourcetype nonrec t = {
  1. createdAt : Timestamp.t option;
    (*

    The timestamp of when Voice ID identified the fraudster.

    *)
  2. domainId : DomainId.t option;
    (*

    The identifier of the domain that contains the fraudster.

    *)
  3. generatedFraudsterId : GeneratedFraudsterId.t option;
    (*

    The service-generated identifier for the fraudster.

    *)
  4. watchlistIds : ResponseWatchlistIds.t option;
    (*

    The identifier of the watchlists the fraudster is a part of.

    *)
}
Sourceval make : ?createdAt:??? -> ?domainId:??? -> ?generatedFraudsterId:??? -> ?watchlistIds:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of WatchlistId.t ] list | `String of DomainId.t | `Timestamp of Timestamp.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