Issue

data class Issue(    val id: String,     val severity: Severity,     val description: String,     val debt: Debt)

An issue represents a problem in the codebase.

Constructors

Link copied to clipboard
fun Issue(    id: String,     severity: Severity,     description: String,     debt: Debt)

Functions

Link copied to clipboard
open override fun toString(): String

Properties

Link copied to clipboard
val debt: Debt
Link copied to clipboard
val description: String
Link copied to clipboard
val id: String
Link copied to clipboard
val severity: Severity