Module Values.UnsuccessfulFaceAssociationSource

Contains metadata like FaceId, UserID, and Reasons, for a face that was unsuccessfully associated.

Sourcetype nonrec t = {
  1. faceId : FaceId.t option;
    (*

    A unique identifier assigned to the face.

    *)
  2. userId : UserId.t option;
    (*

    A provided ID for the UserID. Unique within the collection.

    *)
  3. confidence : Percent.t option;
    (*

    Match confidence with the UserID, provides information regarding if a face association was unsuccessful because it didn't meet UserMatchThreshold.

    *)
  4. reasons : UnsuccessfulFaceAssociationReasons.t option;
    (*

    The reason why the association was unsuccessful.

    *)
}
Sourceval make : ?faceId:??? -> ?userId:??? -> ?confidence:??? -> ?reasons:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Float of Percent.t | `List of [> `Enum of string ] list | `String of FaceId.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