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

org.http4k.format.Gson.kt Maven / Gradle / Ivy

There is a newer version: 5.35.1.0
Show newest version
package org.http4k.format

import com.google.gson.GsonBuilder

/**
 * To implement custom JSON configuration, create your own object singleton. Extra mappings can be added before done() is called.
 */
object Gson : ConfigurableGson(
    GsonBuilder()
        .serializeNulls()
        .asConfigurable()
        .withStandardMappings()
        .done()
)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy