BarcodeResult
Interface BarcodeResult
. The return value when a barcode is detected. It stores the barcode information including barcode text and barcode formats.
export interface BarcodeResult {
/**
* The barcode text.
*/
barcodeText: string;
/**
* Barcode bytes in base64 string.
*/
barcodeBytes: string;
/**
* Barcode type in string.
*/
barcodeFormatString: string;
/**
* The location of the barcode.
*/
barcodeLocation: BarcodeLocationResult;
}