Package-level declarations

Types

Link copied to clipboard
data class CodeDto(var type: CodeTypeDto? = null, var text: String? = null)
Link copied to clipboard

Types of codes that can be scanned. Currently only QR Code is supported. Values: QRCODE

Link copied to clipboard
data class ScanCodeResponseDto(var results: MutableList<ScanResultDto>? = null)

The response returned after scanning documents.

Link copied to clipboard
data class ScanResultDto(var documentName: String? = null, var codes: MutableList<CodeDto>? = null)

The result of scanning a single document.