Level

enum Level(val value: String) : Enum<Level>

Specifies the failure level for the report.

A value specifying the severity level of the notification.

A value specifying the severity level of the result.

Constructors

Link copied to clipboard
private fun Level(value: String)

Entries

Link copied to clipboard
@Json(name = "error")
Error("error")
Link copied to clipboard
@Json(name = "none")
None("none")
Link copied to clipboard
@Json(name = "note")
Note("note")
Link copied to clipboard
@Json(name = "warning")
Warning("warning")

Properties

Link copied to clipboard
val name: String
Link copied to clipboard
val ordinal: Int
Link copied to clipboard
val value: String

Sources

Link copied to clipboard