ski.gagar.vxutil.vertigram.util.json.Mappers.kt Maven / Gradle / Ivy
package ski.gagar.vxutil.vertigram.util.json
import com.fasterxml.jackson.annotation.JsonInclude
import com.fasterxml.jackson.databind.DeserializationFeature
import com.fasterxml.jackson.databind.ObjectMapper
import com.fasterxml.jackson.databind.PropertyNamingStrategies
import com.fasterxml.jackson.module.kotlin.KotlinModule
internal fun telegramJsonMapper(): ObjectMapper = ObjectMapper()
.setAnnotationIntrospector(NoTypeInfoAnnotationIntrospector())
.setPropertyNamingStrategy(PropertyNamingStrategies.SNAKE_CASE)
.enable(DeserializationFeature.FAIL_ON_NULL_FOR_PRIMITIVES)
.setSerializationInclusion(JsonInclude.Include.NON_NULL)
.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false)
.registerModule(KotlinModule.Builder().build())
.registerModule(TelegramModule)
internal val TELEGRAM_JSON_MAPPER: ObjectMapper =
telegramJsonMapper()
© 2015 - 2025 Weber Informatics LLC | Privacy Policy