Breakdown of detected information, seperated into the catagories Type, LabelDetection, and ValueDetection

interface ExpenseField {
    Currency?: ExpenseCurrency;
    GroupProperties?: ExpenseGroupProperty[];
    LabelDetection?: ExpenseDetection;
    PageNumber?: number;
    Type?: ExpenseType;
    ValueDetection?: ExpenseDetection;
}

Properties

Currency?: ExpenseCurrency

Shows the kind of currency, both the code and confidence associated with any monatary value detected.

GroupProperties?: ExpenseGroupProperty[]

Shows which group a response object belongs to, such as whether an address line belongs to the vendor's address or the recipent's address.

LabelDetection?: ExpenseDetection

The explicitly stated label of a detected element.

PageNumber?: number

The page number the value was detected on.

The implied label of a detected element. Present alongside LabelDetection for explicit elements.

ValueDetection?: ExpenseDetection

The value of a detected element. Present in explicit and implicit elements.