I am trying to use Klaxon with a Java model: ``` ...
# klaxon
t
I am trying to use Klaxon with a Java model:
Copy code
import java.util.List;

public class Response {
    public List<User> users;
}
The parser creates a
response
model, however
users
is
null
. I already tried
@Json(name = "users)"
and adding a custom setter. Does the model need to be a
data
class?