m-java.1.0.7.source-code.jsonMapper.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tatum-java Show documentation
Show all versions of tatum-java Show documentation
Tatum API client allows Java projects to interact with Tatum API.
import com.fasterxml.jackson.databind.ObjectMapper
import com.fasterxml.jackson.databind.PropertyNamingStrategy
import com.fasterxml.jackson.datatype.jsr310.JavaTimeModule
import com.fasterxml.jackson.module.kotlin.jacksonObjectMapper
import com.fasterxml.jackson.module.kotlin.registerKotlinModule
val mapper: ObjectMapper = jacksonObjectMapper()
.registerKotlinModule()
.registerModule(JavaTimeModule())
.setPropertyNamingStrategy(PropertyNamingStrategy.LOWER_CAMEL_CASE)
© 2015 - 2025 Weber Informatics LLC | Privacy Policy