Is there a way how to deserialize JSON array
{["a", "b", 1]}
into following Java class
class MyObject {
private String firstItem;
private String secondItem;
private int thirdItem;
}
using FasterXML jackson-databind?
I only found answers where there are key: value items in the array.