DocumentVerificationImageSource

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

Source for a document image sent to BlinkID Verify API.

If both base64 and imageUrl are provided, base64 takes precedence.

Constructors

Link copied to clipboard
constructor(base64: String? = null, imageUrl: String? = null)

Properties

Link copied to clipboard
val base64: String? = null

Base64-encoded JPEG image data.

Link copied to clipboard
val imageUrl: String? = null

Remote URL from which image data can be fetched.