All Downloads are FREE. Search and download functionalities are using the official Maven repository.

serialization.Mapper.kt Maven / Gradle / Ivy

The newest version!
package com.hexagonkt.serialization

import kotlin.reflect.KClass

interface Mapper {

    fun toFieldsMap(instance: Any): Map<*, *>

    fun  toObject(map: Map<*, *>, type: KClass): T
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy