DocumentStatusListItemDto
data class DocumentStatusListItemDto(id: String, arrivalDateTime: OffsetDateTime, documentType: DocumentTypeEnum, status: DocumentStatusTypeEnum, foreignId: String?, lastUpdateDateTime: OffsetDateTime?)
Content copied to clipboard
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)
Content copied to clipboard
@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)
Content copied to clipboard
documentType
Link copied to clipboard
lastUpdateDateTime
Link copied to clipboard
@SerializedName(value = lastUpdateDateTime)
Content copied to clipboard
status
Link copied to clipboard