Interface DecodedBarcodesResult represents information of decoded barcodes from an image.

interface DecodedBarcodesResult {
    errorCode: number;
    errorMessage: string;
    items?: BarcodeResultItem[];
    originalImageHashId: string;
    rotationTransformMatrix: number[];
}

Hierarchy (View Summary)

Properties

errorCode: number

Error code associated with the capture result.

errorMessage: string

Error string providing details about the error.

An array of BarcodeResultItem objects, representing the list of decoded barcodes found in the image.

originalImageHashId: string

The hash ID of the original image.

rotationTransformMatrix: number[]

the rotation transformation matrix of the original image relative to the rotated image.