AuthenticationScanCandidate

Objective-C

@interface AuthenticationScanCandidate : NSObject

@property (nonatomic, strong, readonly, getter=getParsedContent) ParsedContent *content;
@property (nonatomic, strong, readonly, getter=getCodeOrigin) CodeOrigin *codeOrigin;

@property (nonatomic, readonly, getter=getQualityState) QualityState qualityState;
@property (nonatomic, readonly, getter=getBlurScore) double blurScore;
@property (nonatomic, readonly, getter=getTimestamp) unsigned long long timestamp;

/// Get the captured secure grpahic. nil if not available
@property (nonatomic, strong, readonly, getter=getSecureGraphicImage) ScanImage *secureGraphicImage;

/// Get the captured secure code (with SG). nil if not available
@property (nonatomic, strong, readonly, getter=getSecureCodeImage) ScanImage *secureCodeImage;

/// Get the captured secure code (with SG). nil if not available
@property (nonatomic, strong, readonly, getter=getImage) ScanImage *image;
@end

Swift

class AuthenticationScanCandidate : NSObject

Undocumented

  • Undocumented

    Declaration

    Objective-C

    @property (nonatomic, strong, readonly, getter=getParsedContent) ParsedContent *content
  • Undocumented

    Declaration

    Objective-C

    @property (nonatomic, strong, readonly, getter=getCodeOrigin) CodeOrigin *codeOrigin
  • Undocumented

    Declaration

    Objective-C

    @property (nonatomic, readonly, getter=getQualityState) QualityState qualityState

    Swift

    var qualityState: QualityState { get }
  • Undocumented

    Declaration

    Objective-C

    @property (nonatomic, readonly, getter=getBlurScore) double blurScore

    Swift

    var blurScore: Double { get }
  • Undocumented

    Declaration

    Objective-C

    @property (nonatomic, readonly, getter=getTimestamp) unsigned long long timestamp

    Swift

    var timestamp: UInt64 { get }
  • Get the captured secure grpahic. nil if not available

    Declaration

    Objective-C

    @property (nonatomic, strong, readonly, getter=getSecureGraphicImage) ScanImage *_Nonnull secureGraphicImage;

    Swift

    var secureGraphicImage: ScanImage { get }
  • Get the captured secure code (with SG). nil if not available

    Declaration

    Objective-C

    @property (nonatomic, strong, readonly, getter=getSecureCodeImage) ScanImage *_Nonnull secureCodeImage;

    Swift

    var secureCodeImage: ScanImage { get }
  • Get the captured secure code (with SG). nil if not available

    Declaration

    Objective-C

    @property (nonatomic, strong, readonly, getter=getImage) ScanImage *_Nonnull image;

    Swift

    var image: ScanImage { get }