Nikolay Lebedev
11/09/2021, 1:41 PM{"name": "Foo"}
and {"age": 42}
and want to get {"name": "Foo", "age": 42}
object.Paul Griffith
11/10/2021, 5:40 PMkotlinx-serialization
JsonElements implement Map<String, JsonElement>
, so you can just create a new JsonElement(firstJson + secondJson)