We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Issue
1 parent 542bcff commit 31c0ecbCopy full SHA for 31c0ecb
model/src/commonMain/kotlin/runs/Issue.kt
@@ -24,10 +24,20 @@ import kotlinx.serialization.Serializable
24
25
import org.eclipse.apoapsis.ortserver.model.Severity
26
27
+/**
28
+ * A data class describing an issue that occurred during an ORT run.
29
+ */
30
@Serializable
31
data class Issue(
32
+ /** The timestamp when this issue occurred. */
33
val timestamp: Instant,
34
+
35
+ /** The source where this issue occurred. */
36
val source: String,
37
38
+ /** A message describing the issue. */
39
val message: String,
40
41
+ /** The [Severity] of the issue. */
42
val severity: Severity
43
)
0 commit comments