BarcodeDocumentParserResult

data class BarcodeDocumentParserResult(val success: Boolean, val parsedDocument: GenericDocument?) : AutoCloseable, Parcelable

The result of barcode document parsing.

Constructors

Link copied to clipboard
constructor(source: Map<String, Any?>)
constructor(json: JSONObject)
constructor(success: Boolean, parsedDocument: GenericDocument?)

Properties

Link copied to clipboard

In case of success, the parsed document.

Link copied to clipboard

True if any document was parsed.

Functions

Link copied to clipboard
Link copied to clipboard
open override fun close()
Link copied to clipboard
fun toJson(config: ToJsonConfiguration = ToJsonConfiguration.default()): JSONObject