I am currently making a get request using volley and in onResponse i am trying to parse the jsonObject using gson to my model.
JSON Returned after the request is made:
As Mentioned by user1912026, change as below.
private ClientData data;
And change the setter and getter as below
public ClientData getClientData() { return data; } public void setClientData(ClientData clientData) { this.data = clientData; }