Table of Contents

Property HumanVerificationRequired

Namespace
LMKit.Extraction
Assembly
LM-Kit.NET.dll

HumanVerificationRequired

Gets a value indicating whether a human reviewer should verify this element's extracted value.

public bool HumanVerificationRequired { get; }

Property Value

bool

true when any of the following conditions is met:

Otherwise false.

Examples

foreach (var el in result.Elements)
{
    if (el.HumanVerificationRequired)
    {
        Console.WriteLine($"Review needed: {el.TextExtractionElement.Name}");
    }
}