MBBUsdlRecognizerResult


@interface MBBUsdlRecognizerResult : MBBRecognizerResult <NSCopying>

A recognizer that can scan PDF417 2D barcodes.

  • Unavailable

    Undocumented

    Declaration

    Objective-C

    MB_INIT_UNAVAILABLE
  • Byte array with result of the scan

    Declaration

    Objective-C

    - (NSData *_Nullable)data;
  • Flag indicating uncertain scanning data E.g obtained from damaged barcode.

    Declaration

    Objective-C

    - (BOOL)isUncertain;
  • Returns a string value for a given key.

    Declaration

    Objective-C

    - (NSString *_Nullable)getField:(MBBUsdlKeys)usdlKey;

    Parameters

    usdlKey

    field key

    Return Value

    value for a given key

  • Array of elements that are not part of AAMVA standard and are specific to each US state. If no specific elements existed inside 2D barcode, this is an empty array. Otherwise, this array contains list of state-specific elements in the same order as given inside barcode. NOTE: Size of this array is both state-specific and barcode-specific. Each US state has ability to arbitrarily define size and contents of these elements. You can obtain the as a parameter.

    Declaration

    Objective-C

    - (NSArray<NSString *> *_Nullable)optionalElements;