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

interface UnsuccessfulFaceAssociation {
    Confidence?: number;
    FaceId?: string;
    Reasons?: UnsuccessfulFaceAssociationReason[];
    UserId?: string;
}

Properties

Confidence?: number

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

FaceId?: string

A unique identifier assigned to the face.

The reason why the association was unsuccessful.

UserId?: string

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