Deserializer

fun interface Deserializer<T, R>

Transforms an input object of type T to an output object of type R

Functions

Link copied to clipboard
abstract fun deserialize(value: T): R

From the input value of type T, this method should produce an output of type R