Package-level declarations

Types

Link copied to clipboard
@Serializable
data class BlinkIdVerifyProcessingRequestOptions(val returnFullDocumentImage: Boolean? = null, val returnFaceImage: Boolean? = null, val returnSignatureImage: Boolean? = null, val treatExpirationAsFraud: Boolean? = null, val screenMatchLevel: MatchLevel? = null, val photocopyMatchLevel: MatchLevel? = null, val barcodeAnomalyMatchLevel: MatchLevel? = null, val photoForgeryMatchLevel: MatchLevel? = null, val staticSecurityFeaturesMatchLevel: MatchLevel? = null, val dataMatchMatchLevel: MatchLevel? = null, 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, val returnImageFormat: ImageFormat? = null, val anonymizationMode: AnonymizationMode? = null, sideMode: VerificationSideMode? = null)

Class representing options for document verification request. If nullable settings are not set, server defaults will be used.

Link copied to clipboard
@Serializable
data class BlinkIdVerifyProcessingUseCase(val documentVerificationPolicy: DocumentVerificationPolicy?, val verificationContext: VerificationContext?, val manualReviewStrategy: ReviewStrategy?, val manualReviewSensitivity: ReviewSensitivity?) : Parcelable

Represents the configuration for processing a document verification request.

Link copied to clipboard
@Serializable
data class BlinkIdVerifyRequest @JvmOverloads constructor(val imageFront: DocumentVerificationImageSource? = null, val imageBack: DocumentVerificationImageSource? = null, val imageBarcode: DocumentVerificationImageSource? = null, val options: BlinkIdVerifyProcessingRequestOptions? = null, val useCase: BlinkIdVerifyProcessingUseCase? = null, val captureSessionId: String? = null, val traceId: String? = null)

Class representing document verification request to be verified.

Link copied to clipboard
@Serializable
data class DocumentVerificationImageSource(val base64: String? = null, val imageUrl: String? = null)

Url of the image or base64 String. The base64 String takes precedence if url and base64 String are defined.

Link copied to clipboard

Defines the level of strictness applied during the document verification process.

Link copied to clipboard
@Serializable
data class ImageSource @JvmOverloads constructor(val image: Bitmap?, val imageUrl: String? = null)

Url of the image or Bitmap. The Bitmap takes precedence if url and Bitmap are defined.

Link copied to clipboard

Defines the sensitivity level used for manual review.

Link copied to clipboard

Specifies the strategy used for manual review of the verification results.

Link copied to clipboard

Defines the context in which the verification is being performed.