SimpleDocumentWithStatus

data class SimpleDocumentWithStatus(    val id: String,     val foreignId: String? = null,     val arrivalDateTime: OffsetDateTime,     val lastUpdateDateTime: OffsetDateTime?,     val documentType: DocumentType,     val status: DocumentServerStatus)

A much simplified version of Document which is returned when we query the API for the status of document(s)

See also

Constructors

Link copied to clipboard
constructor(    id: String,     foreignId: String? = null,     arrivalDateTime: OffsetDateTime,     lastUpdateDateTime: OffsetDateTime?,     documentType: DocumentType,     status: DocumentServerStatus)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val foreignId: String? = null
Link copied to clipboard
val id: String
Link copied to clipboard
Link copied to clipboard