Can you customize the name of parameters when usin...
# ktor
r
Can you customize the name of parameters when using Resources? For example I have a query parameter named
login-only
and I would like the Resource property to be named
loginOnly
, much like what you could do when serializing data classes with camel case properties to snake case json
Can I just use
@SerialName
? After all resources are using kotlinx.serialization afaik
a
You can use
@SerialName