Export
data class Export(val destructionTime: OffsetDateTime, val createdAt: OffsetDateTime, val updatedAt: OffsetDateTime, val resultSize: Int, val outputFormats: List<ExportFormat>, val documentIds: List<String>, val status: ExportStatus, val id: String, val completionTime: OffsetDateTime? = null, val fileUrl: String? = null, val fileSize: Int? = null)
Model containing all the properties of a created Document Export.
Note that the nullable properties completionTime, fileUrl, fileSize should only be null if the status is not ExportStatus.COMPLETED
See also
Constructors
Link copied to clipboard
constructor(destructionTime: OffsetDateTime, createdAt: OffsetDateTime, updatedAt: OffsetDateTime, resultSize: Int, outputFormats: List<ExportFormat>, documentIds: List<String>, status: ExportStatus, id: String, completionTime: OffsetDateTime? = null, fileUrl: String? = null, fileSize: Int? = null)