DocumentStatusListItemDto

data class DocumentStatusListItemDto(id: String, arrivalDateTime: OffsetDateTime, documentType: DocumentTypeEnum, status: DocumentStatusTypeEnum, foreignId: String?, lastUpdateDateTime: OffsetDateTime?)

Schema for an entry in the documents/status endpoint response

Parameters

id
  • @param arrivalDateTime The date and time that the document was submitted to our system. With no explicit timezone information.

documentType
  • @param status * @param 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

DocumentStatusListItemDto
Link copied to clipboard
fun DocumentStatusListItemDto(id: String, arrivalDateTime: OffsetDateTime, documentType: DocumentTypeEnum, status: DocumentStatusTypeEnum, foreignId: String? = null, lastUpdateDateTime: OffsetDateTime? = null)
  • @param arrivalDateTime The date and time that the document was submitted to our system. With no explicit timezone information.

Properties

arrivalDateTime
Link copied to clipboard
@SerializedName(value = arrivalDateTime)
val arrivalDateTime: OffsetDateTime
documentType
Link copied to clipboard
@SerializedName(value = documentType)
val documentType: DocumentTypeEnum
  • @param status * @param foreignId A unique identifier that was passed on upload to ensure that retries can happen without overriding data.

foreignId
Link copied to clipboard
@SerializedName(value = foreignId)
val foreignId: String? = null
id
Link copied to clipboard
@SerializedName(value = id)
val id: String
  • @param arrivalDateTime The date and time that the document was submitted to our system. With no explicit timezone information.

lastUpdateDateTime
Link copied to clipboard
@SerializedName(value = lastUpdateDateTime)
val lastUpdateDateTime: OffsetDateTime? = null
The date and time that the document was last updated in our system.
status
Link copied to clipboard
@SerializedName(value = status)
val status: DocumentStatusTypeEnum