Module Values.UserMatchSource

Provides UserID metadata along with the confidence in the match of this UserID with the input face.

Sourcetype nonrec t = {
  1. similarity : Percent.t option;
    (*

    Describes the UserID metadata.

    *)
  2. user : MatchedUser.t option;
    (*

    Confidence in the match of this UserID with the input face.

    *)
}
Sourceval make : ?similarity:??? -> ?user:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Float of Percent.t | `Structure of (string * [> `Enum of string | `String of UserId.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