Diff

data class Diff(val added: List<Error> = emptyList(), val removed: List<Error> = emptyList(), val updated: List<Pair<Previous, Updated>> = emptyList())

Occurred errors differences.

Parameters

added

Added errors (new ones).

removed

Removed errors (resolved).

updated

Updated errors for specific action. First element in pair an previous element, second one is updated (for example message changed etc.).

Constructors

Link copied to clipboard
constructor(added: List<Error> = emptyList(), removed: List<Error> = emptyList(), updated: List<Pair<Previous, Updated>> = emptyList())

Properties

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard