DocumentData

data class DocumentData(var uuid: String, var creationTimestamp: Long, var pages: List<PageData>, var documentImageSizeLimit: Int = 0, var pdfURI: String, var tiffURI: String)

Document Data.

Constructors

Link copied to clipboard
constructor(uuid: String, creationTimestamp: Long, pages: List<PageData>, documentImageSizeLimit: Int = 0, pdfURI: String, tiffURI: String)
constructor(source: Map<String, Any?>)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

The creation timestamp of the document.

Link copied to clipboard

The maximum size of the document image.

Link copied to clipboard

The list of pages.

Link copied to clipboard

The URI of the default destination location for PDF rendering.

Link copied to clipboard

The URI of the default destination location for TIFF rendering.

Link copied to clipboard

The unique identifier of the document.

Functions

Link copied to clipboard
fun toJson(config: ToJsonConfiguration = ToJsonConfiguration.default()): JsonObject
Link copied to clipboard
fun toJsonString(config: ToJsonConfiguration = ToJsonConfiguration.default()): String