ConsoleMessage

@Serializable
data class ConsoleMessage(val source: String, val level: String, val text: String, val url: String? = null, val line: Int? = null, val column: Int? = null)

Console message.

Constructors

Link copied to clipboard
constructor(source: String, level: String, text: String, url: String? = null, line: Int? = null, column: Int? = null)

Properties

Link copied to clipboard
val column: Int? = null

Column number in the resource that generated this message (1-based).

Link copied to clipboard

Message severity.

Link copied to clipboard
val line: Int? = null

Line number in the resource that generated this message (1-based).

Link copied to clipboard

Message source.

Link copied to clipboard

Message text.

Link copied to clipboard
val url: String? = null

URL of the message origin.