elect
06/15/2024, 8:32 AM"addOnCommandParameters": {
"myAddOnCommandParameter1": "X=?"
}
what's the best strategy in this case? A custom serializer? If yes, how is gonna be the descriptor?Emil Kantis
06/15/2024, 9:10 AMelect
06/15/2024, 9:10 AMelect
06/15/2024, 9:11 AMEmil Kantis
06/15/2024, 9:11 AMEmil Kantis
06/15/2024, 9:14 AMelect
06/15/2024, 9:15 AMmapSerialDescriptor
then?Emil Kantis
06/15/2024, 9:19 AM@Serializable
data class Command(
val addOnCommandParameters: Map<String,String>
)
Should be enoughelect
06/15/2024, 10:01 AM