Nicodemus Ojwee
09/12/2020, 9:54 PMdata class Test(var name: String = "", var age: Int = 0)
val output = JSON.stringify(Test("Nico", 25))
Output i get:
{name: "Nico", age: 25}
The output i expected:
{
"name": "Nico",
"age": 25
}
Aren't the keys supposed to be in double quotes as above compared to the first output?turansky
09/12/2020, 10:05 PMNicodemus Ojwee
09/12/2020, 10:25 PMNicodemus Ojwee
09/12/2020, 10:50 PM