Using kotlin and nodejs ```interface MyInterface {...
# javascript
a
Using kotlin and nodejs
Copy code
interface MyInterface {
    var string: String
}

data class MyDataClass(
    override var string: String
) : MyInterface
Copy code
In route:
res.json(MyDataClass("Hello World!"))

Results:
{
"string_qx5u03$_0": "Hello World!"
}