UUIDSerializer

object UUIDSerializer : KSerializer<UUID>

Serializer object for handling UUID serialization and deserialization.

Properties

Link copied to clipboard
open override val descriptor: SerialDescriptor

The descriptor for the UUID serializer, indicating it handles string representations of UUIDs.

Functions

Link copied to clipboard
open override fun deserialize(decoder: Decoder): UUID

Deserializes a UUID from its string representation.

Link copied to clipboard
open override fun serialize(encoder: Encoder, value: UUID)

Serializes a UUID to its string representation.