MBMrzFilter

@protocol MBMrzFilter <NSObject>
@required
/**
 * Determines whether document should be processed or it is filtered out.
 * @return YES if the document with the given MRZ should be processed, NO if the document
 * should be filtered out.
 */
- (BOOL)mrzFilter;
@end

Undocumented

  • Determines whether document should be processed or it is filtered out.

    Declaration

    Objective-C

    - (BOOL)mrzFilter;

    Swift

    func mrzFilter() -> Bool

    Return Value

    YES if the document with the given MRZ should be processed, NO if the document should be filtered out.