RepairPerformed

data class RepairPerformed(val totalConversationsChecked: Int, val conversationsWithFaultyKeys: Int, val successfullyRepairedConversations: Int, val failedRepairs: List<String>) : RepairResult

Result of the repair operation.

Constructors

Link copied to clipboard
constructor(totalConversationsChecked: Int, conversationsWithFaultyKeys: Int, successfullyRepairedConversations: Int, failedRepairs: List<String>)

Properties

Link copied to clipboard

Number of conversations that had the faulty key.

Link copied to clipboard
val failedRepairs: List<String>

List of conversation IDs where repair failed.

Link copied to clipboard

Number of conversations that were successfully repaired.

Link copied to clipboard

Total number of conversations checked in the domain.

Functions

Link copied to clipboard
fun toLogString(): String