ExportCreateResponseDto

data class ExportCreateResponseDto(destructionTime: OffsetDateTime, createdAt: OffsetDateTime, criteria: ListDocumentsCriteriaDto, outputFormats: List<String>, documentsCount: BigDecimal, status: ExportResponseStatusEnum, id: String)

Parameters

destructionTime

The date and time of when this export object will be deleted from the system.

createdAt
  • @param criteria * @param outputFormats * @param documentsCount The number of documents that matches the given criteria. The final number of documents in the export can be different from this one if documents are created or deleted between this POST request and the time when the request is processed.

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

Constructors

ExportCreateResponseDto
Link copied to clipboard
fun ExportCreateResponseDto(destructionTime: OffsetDateTime, createdAt: OffsetDateTime, criteria: ListDocumentsCriteriaDto, outputFormats: List<String>, documentsCount: BigDecimal, status: ExportResponseStatusEnum, id: String)
The date and time of when this export object will be deleted from the system.

Properties

createdAt
Link copied to clipboard
@SerializedName(value = createdAt)
val createdAt: OffsetDateTime
  • @param criteria * @param outputFormats * @param documentsCount The number of documents that matches the given criteria. The final number of documents in the export can be different from this one if documents are created or deleted between this POST request and the time when the request is processed.

criteria
Link copied to clipboard
@SerializedName(value = criteria)
val criteria: ListDocumentsCriteriaDto
destructionTime
Link copied to clipboard
@SerializedName(value = destructionTime)
val destructionTime: OffsetDateTime
The date and time of when this export object will be deleted from the system.
documentsCount
Link copied to clipboard
@SerializedName(value = documentsCount)
val documentsCount: BigDecimal
id
Link copied to clipboard
@SerializedName(value = id)
val id: String
outputFormats
Link copied to clipboard
@SerializedName(value = outputFormats)
val outputFormats: List<String>
status
Link copied to clipboard
@SerializedName(value = status)
val status: ExportResponseStatusEnum
  • @param id This is a unique identifier which is used to identify the export request on Sensibill's system.