KeyType

@Serializable(with = KeyTypeSerializer::class)
sealed interface KeyType

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 'type' of the type 'Key'

Official doc

Inheritors

Types

Link copied to clipboard
@Serializable(with = KeyTypeSerializer::class)
data object array : KeyType
Link copied to clipboard
@Serializable(with = KeyTypeSerializer::class)
data object date : KeyType
Link copied to clipboard
@Serializable(with = KeyTypeSerializer::class)
data class NotDefinedInProtocol(val value: String) : KeyType

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 = KeyTypeSerializer::class)
data object number : KeyType
Link copied to clipboard
@Serializable(with = KeyTypeSerializer::class)
data object string : KeyType