Document Data Extractor Configuration
data class DocumentDataExtractorConfiguration(var resultAccumulationConfig: ResultAccumulationConfiguration = ResultAccumulationConfiguration( ), var fieldExcludeList: List<String> = listOf( ), var configurations: List<DocumentDataExtractorConfigurationElement> = listOf( DocumentDataExtractorCommonConfiguration( ) ), var returnCrops: Boolean = false, var documentTrustMode: DocumentTrustMode = DocumentTrustMode.TRUSTED, var processingMode: ProcessingMode = ProcessingMode.AUTO) : Parcelable
Configuration for the document data extractor.
Constructors
Link copied to clipboard
constructor(resultAccumulationConfig: ResultAccumulationConfiguration = ResultAccumulationConfiguration( ), fieldExcludeList: List<String> = listOf( ), configurations: List<DocumentDataExtractorConfigurationElement> = listOf( DocumentDataExtractorCommonConfiguration( ) ), returnCrops: Boolean = false, documentTrustMode: DocumentTrustMode = DocumentTrustMode.TRUSTED, processingMode: ProcessingMode = ProcessingMode.AUTO)
Properties
Link copied to clipboard
List of configuration elements for the document data extractor.
Link copied to clipboard
Level of trust in the authenticity of the extracted document.
Link copied to clipboard
Normalized names of the fields to exclude from the result.
Link copied to clipboard
Scanners typically can produce better results from a single image if they are allowed to spend a longer time analyzing it.
Link copied to clipboard
Configuration for how to accumulate results.
Link copied to clipboard
If true, crops of the detected documents and fields will be returned in the result.