Deserializer

interface Deserializer<T>

Deserializer is used to convert JSON objects into model instances.

Parameters

T

The type of the model to deserialize.

Functions

Link copied to clipboard
abstract fun deserialize(model: Any?, key: String?, json: Any?): T

Deserializes a JSON object into a model instance.