I have the next valid JSON. but its possible to parse directly the array with the library, i could'nt found information about how to do it .
[
[
{
"body": "Text",
"bodyType": "Text",
"nameType": "Text",
"makeDisplay": "Acura"
}
],
[
{
"body": "text",
"bodyType": "text",
"nameType": "text",
"makeDisplay": "text"
}
]
]
Yes this is possible. You can parse it into a List<List<Type>>. You can can make a serializer using Type.serializer().list.list.
Most helpful comment
Yes this is possible. You can parse it into a
List<List<Type>>. You can can make a serializer usingType.serializer().list.list.