Barcode Count Capture List Session
Defined in framework ScanditBarcodeCapture
- SDCBarcodeCountCaptureListSession
@interface SDCBarcodeCountCaptureListSession : NSObject
Added in version 6.15.0
The capture list session contains all the barcodes recognised so far, and how they match against the target list.
- correctBarcodes
@property (nonatomic, nonnull, readonly) NSArray<SDCTrackedBarcode *> *correctBarcodes
Added in version 6.15.0
A list of tracked barcodes that have been correctly matched to the target data provided in the list.
- wrongBarcodes
@property (nonatomic, nonnull, readonly) NSArray<SDCTrackedBarcode *> *wrongBarcodes
Added in version 6.15.0
A list of tracked barcodes that have been correctly scanned, but that don’t match any of the ones provided in the list.
- acceptedBarcodes
@property (nonatomic, nonnull, readonly) NSArray<SDCTrackedBarcode *> *acceptedBarcodes
Added in version 6.28.0
A list of tracked barcodes that have been marked as accepted.
- rejectedBarcodes
@property (nonatomic, nonnull, readonly) NSArray<SDCTrackedBarcode *> *rejectedBarcodes
Added in version 6.28.0
A list of tracked barcodes that have been marked as rejected.
- missingBarcodes
@property (nonatomic, nonnull, readonly) NSArray<SDCTargetBarcode *> *missingBarcodes
Added in version 6.15.0
A list of the barcodes in the target list that have not yet been correctly scanned. If no list was provided to SDCBarcodeCountCaptureList, this list will be empty.
- additionalBarcodes
@property (nonatomic, nonnull, readonly) NSArray<SDCBarcode *> *additionalBarcodes
Added in version 6.16.0
The array of additional barcodes injected with SDCBarcodeCount.setAdditionalBarcodes:.