Package-level declarations

Types

Link copied to clipboard
@Serializable
data class BlinkIdVerifyProcessResult(val inputImageAnalysisResult: VerifyInputImageAnalysisResult, val resultCompleteness: VerifyResultCompleteness)

Represents the result of a processing operation, encapsulating the analysis of a frame and the completeness status of the overall process.

Link copied to clipboard

Represents a capture session for document verification.

Link copied to clipboard
@Serializable
data class BlinkIdVerifyScanningSettings @JvmOverloads constructor(val scanUnsupportedBack: Boolean? = null, val scanPassportDataPageOnly: Boolean? = null, val treatExpirationAsFraud: Boolean? = null, val screenAnalysisMatchLevel: MatchLevel? = null, val staticSecurityFeaturesMatchLevel: MatchLevel? = null, val barcodeAnomalyMatchLevel: MatchLevel? = null, val dataMatchMatchLevel: MatchLevel? = null, val imageQualitySettings: ImageQualitySettings? = null, val useCase: BlinkIdVerifyProcessingUseCase? = null) : Parcelable

Defines behavior for a BlinkID Verify session.

Link copied to clipboard
@Serializable
data class BlinkIdVerifySessionSettings @JvmOverloads constructor(val inputImageSource: InputImageSource = InputImageSource.Video, val scanningSettings: BlinkIdVerifyScanningSettings = BlinkIdVerifyScanningSettings()) : Parcelable

Represents the configuration settings for a session.

Link copied to clipboard
@Serializable
data class ImageQualitySettings @JvmOverloads constructor(val blurMatchLevel: MatchLevel? = null, val glareMatchLevel: MatchLevel? = null, val lightingMatchLevel: MatchLevel? = null, val sharpnessMatchLevel: MatchLevel? = null, val handOcclusionMatchLevel: MatchLevel? = null, val dpiMatchLevel: MatchLevel? = null, val tiltMatchLevel: MatchLevel? = null, val imageQualityInterpretation: ImageQualityInterpretation? = null) : Parcelable

Class representing options for image quality settings. Stricter settings will provide better quality images as the scan will not complete until they are met. If nullable settings are not set, internal defaults will be used.