ExportsResponseDto

data class ExportsResponseDto(destructionTime: OffsetDateTime, createdAt: OffsetDateTime, updatedAt: OffsetDateTime, resultSize: Int, criteria: ListDocumentsCriteriaDto?, outputFormats: List<String>, documents: List<ExportsResponseDtoDocumentsInner>, status: ExportItemStatusEnum, id: String, completionTime: OffsetDateTime?, fileURL: String?, filesize: Int?)

Parameters

destructionTime
  • @param createdAt * @param updatedAt * @param resultSize The number of documents captured in the export.

criteria
  • @param outputFormats * @param documents * @param status * @param id This is a unique identifier which is used to identify the export request on Sensibill's system.

completionTime
  • @param fileURL The URL that can be used to download the contents of the export.

filesize

The size of the contents in bytes, when available.

Constructors

ExportsResponseDto
Link copied to clipboard
fun ExportsResponseDto(destructionTime: OffsetDateTime, createdAt: OffsetDateTime, updatedAt: OffsetDateTime, resultSize: Int, criteria: ListDocumentsCriteriaDto?, outputFormats: List<String>, documents: List<ExportsResponseDtoDocumentsInner>, status: ExportItemStatusEnum, id: String, completionTime: OffsetDateTime? = null, fileURL: String? = null, filesize: Int? = null)
  • @param createdAt * @param updatedAt * @param resultSize The number of documents captured in the export.

Properties

completionTime
Link copied to clipboard
@SerializedName(value = completionTime)
val completionTime: OffsetDateTime? = null
  • @param fileURL The URL that can be used to download the contents of the export.

createdAt
Link copied to clipboard
@SerializedName(value = createdAt)
val createdAt: OffsetDateTime
criteria
Link copied to clipboard
@SerializedName(value = criteria)
val criteria: ListDocumentsCriteriaDto?
  • @param outputFormats * @param documents * @param status * @param id This is a unique identifier which is used to identify the export request on Sensibill's system.

destructionTime
Link copied to clipboard
@SerializedName(value = destructionTime)
val destructionTime: OffsetDateTime
  • @param createdAt * @param updatedAt * @param resultSize The number of documents captured in the export.

documents
Link copied to clipboard
@SerializedName(value = documents)
val documents: List<ExportsResponseDtoDocumentsInner>
filesize
Link copied to clipboard
@SerializedName(value = filesize)
val filesize: Int? = null
The size of the contents in bytes, when available.
fileURL
Link copied to clipboard
@SerializedName(value = fileURL)
val fileURL: String? = null
id
Link copied to clipboard
@SerializedName(value = id)
val id: String
outputFormats
Link copied to clipboard
@SerializedName(value = outputFormats)
val outputFormats: List<String>
resultSize
Link copied to clipboard
@SerializedName(value = resultSize)
val resultSize: Int
status
Link copied to clipboard
@SerializedName(value = status)
val status: ExportItemStatusEnum
updatedAt
Link copied to clipboard
@SerializedName(value = updatedAt)
val updatedAt: OffsetDateTime