ExportsResponseDto

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

Parameters

destructionTime
createdAt
updatedAt
resultSize

The number of documents captured in the export.

outputFormats

Indicates which formats were requested. Valid values are: * 'csv' - indicates a comma separated file should be produced summarizing the exported data * 'xlsx' - indicates an excel spreadsheet should be produced summarizing the exported data * 'pdf' - indicates individual documents should be exported to a PDF file

documents
status
id

This is a unique identifier which is used to identify the export request on Sensibill's system.

completionTime
fileURL

The URL that can be used to download the contents of the export. Response header Content-Type is set depending on the exported file format.

filesize

The size of the contents in bytes, when available.

Constructors

Link copied to clipboard
constructor(destructionTime: OffsetDateTime, createdAt: OffsetDateTime, updatedAt: OffsetDateTime, resultSize: Int, outputFormats: List<ExportOutputFormatsEnum>, documents: List<ExportsResponseDtoDocumentsInner>, status: ExportItemStatusEnum, id: String, completionTime: OffsetDateTime? = null, fileURL: String? = null, filesize: Int? = null)

Properties

Link copied to clipboard
@SerializedName(value = "completionTime")
val completionTime: OffsetDateTime? = null
Link copied to clipboard
@SerializedName(value = "createdAt")
val createdAt: OffsetDateTime
Link copied to clipboard
@SerializedName(value = "destructionTime")
val destructionTime: OffsetDateTime
Link copied to clipboard
@SerializedName(value = "documents")
val documents: List<ExportsResponseDtoDocumentsInner>
Link copied to clipboard
@SerializedName(value = "filesize")
val filesize: Int? = null
Link copied to clipboard
@SerializedName(value = "fileURL")
val fileURL: String? = null
Link copied to clipboard
@SerializedName(value = "id")
val id: String
Link copied to clipboard
@SerializedName(value = "outputFormats")
val outputFormats: List<ExportOutputFormatsEnum>
Link copied to clipboard
@SerializedName(value = "resultSize")
val resultSize: Int
Link copied to clipboard
@SerializedName(value = "status")
val status: ExportItemStatusEnum
Link copied to clipboard
@SerializedName(value = "updatedAt")
val updatedAt: OffsetDateTime