PlayerMessageLevel

@Serializable(with = PlayerMessageLevelSerializer::class)
sealed interface PlayerMessageLevel

This enum doesn't have a proper description because it was generated from an inline declaration. Its name was inferred based on the place where it is used:

  • the property 'level' of the type 'PlayerMessage'

Official doc

Inheritors

Types

Link copied to clipboard
@Serializable(with = PlayerMessageLevelSerializer::class)
data object debug : PlayerMessageLevel
Link copied to clipboard
@Serializable(with = PlayerMessageLevelSerializer::class)
data object error : PlayerMessageLevel
Link copied to clipboard
@Serializable(with = PlayerMessageLevelSerializer::class)
data object info : PlayerMessageLevel
Link copied to clipboard
@Serializable(with = PlayerMessageLevelSerializer::class)
data class NotDefinedInProtocol(val value: String) : PlayerMessageLevel

This extra enum entry represents values returned by Chrome that were not defined in the protocol (for instance new values that were added later).

Link copied to clipboard
@Serializable(with = PlayerMessageLevelSerializer::class)
data object warning : PlayerMessageLevel