DocumentStatusListItemDto
data class DocumentStatusListItemDto(val id: String, val arrivalDateTime: OffsetDateTime, val documentType: DocumentTypeEnum, val status: DocumentStatusTypeEnum, val foreignId: String? = null, val lastUpdateDateTime: OffsetDateTime? = null)
Schema for an entry in the documents/status endpoint response
Parameters
id
arrivalDateTime
The date and time that the document was submitted to our system. With no explicit timezone information.
documentType
status
foreignId
A unique identifier that was passed on upload to ensure that retries can happen without overriding data.
lastUpdateDateTime
The date and time that the document was last updated in our system. This will typically be when a user has last changed data on the document. With no explicit timezone information.
Constructors
Link copied to clipboard
constructor(id: String, arrivalDateTime: OffsetDateTime, documentType: DocumentTypeEnum, status: DocumentStatusTypeEnum, foreignId: String? = null, lastUpdateDateTime: OffsetDateTime? = null)