I folks, is possible with Ktx.serialization to be ...
# serialization
s
I folks, is possible with Ktx.serialization to be able to transform a specific type(like String)? I know that I can use
SerialInfo
and create a new decoder, but I want to work with any
StringFormat
.
Copy code
@Serializable
data class Test(
  @Placeholder
  val msg: String = "my message with custom placeholder {{test}}",
  val listOfMsgs: List<@Placeholder String> = listOf("{{address}}")
)