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)