LastExceed
03/17/2022, 9:27 AM[]
as if it was just a simple property of the inner type. eg x = listOf("foo", "bar")
is serialized as "x": ["foo", "bar"]
(as expected), but x = listOf("foo")
is serialized as "x": "foo"
instead of "x": ["foo"]
. this breaks the parser, because it sees a x: String
property where x: List<String>
is expected. how do i work around this?LastExceed
03/17/2022, 9:37 AM