The Barcode Scanner Result Field

interface BarcodeResultField {
    formattedResult?: GenericDocument;
    parsedSuccessful: boolean;
    rawBytes: number[];
    text: string;
    textWithExtension: string;
    type: BarcodeFormat;
}

Properties

formattedResult?: GenericDocument

The parsed known document format (if parsed successfully).

parsedSuccessful: boolean

True if the Barcode Document has been parsed successfully

rawBytes: number[]

The array of raw bytes that compose the recognized barcode

text: string

The recognized barcode text

textWithExtension: string

The recognized barcode text with extension (if available)

The recognized barcode type