TrackedBarcodeInfo

Defined in framework ScanditBarcodeCapture

SDCTrackedBarcodeInfo
@interface SDCTrackedBarcodeInfo : NSObject

Added in version 6.10.0

A class used to instantiate a tracked barcode with the specified information. Can be used to create TrackedBarcode mocks for unit testing.

- initWithSymbology:data:
- (instancetype)initWithSymbology:(SDCSymbology)symbology
                             data:(nonnull NSString *)data

Added in version 6.10.0

- initWithSymbology:data:location:
- (instancetype)initWithSymbology:(SDCSymbology)symbology
                             data:(nonnull NSString *)data
                         location:(SDCQuadrilateral)location

Added in version 6.10.0

- initWithSymbology:data:location:identifier:
- (instancetype)initWithSymbology:(SDCSymbology)symbology
                             data:(nonnull NSString *)data
                         location:(SDCQuadrilateral)location
                       identifier:(NSInteger)identifier

Added in version 6.10.0

symbology
@property (nonatomic, readonly) SDCSymbology symbology

Added in version 6.10.0

The symbology of the barcode.

data
@property (nonatomic, nonnull, readonly) NSString *data

Added in version 6.10.0

The data of a barcode as a unicode string.

location
@property (nonatomic, readonly) SDCQuadrilateral location

Added in version 6.10.0

The location of the code. For more info see TrackedBarcode.

identifier
@property (nonatomic, readonly) NSInteger identifier

Added in version 6.10.0