FileCounts

@Serializable
data class FileCounts(val inProgress: Long, val completed: Long, val failed: Long, val cancelled: Long, val total: Long)

The number of files that are currently being processed.

Constructors

Link copied to clipboard
constructor(inProgress: Long, completed: Long, failed: Long, cancelled: Long, total: Long)

Properties

Link copied to clipboard
@SerialName(value = "cancelled")
val cancelled: Long

The number of files that were canceled.

Link copied to clipboard
@SerialName(value = "completed")
val completed: Long

The number of files that have been successfully processed.

Link copied to clipboard
@SerialName(value = "failed")
val failed: Long

The number of files that have failed to process.

Link copied to clipboard
@SerialName(value = "in_progress")
val inProgress: Long

The number of files that are currently being processed.

Link copied to clipboard
@SerialName(value = "total")
val total: Long

The total number of files.