I answered my own question. You can use whatever l...
# ktor
s
I answered my own question. You can use whatever library you want for the content negotiation by doing
Copy code
install(ContentNegotiation) {
    gson {
        // Configure Gson here
    }
}
then you can just configure it the normal way you’d configure that library. for gson it’s:
Copy code
setFieldNamingPolicy(FieldNamingPolicy.LOWER_CASE_WITH_UNDERSCORES)
👍 3