I am trying to map below JSON to a POJO Class using Gson library. Below is the JSON response and POJO Class and mapping done
import java.util.Map;
import com.google.gson.JsonElement;
public class DataResponse {
    private String $status;
    private Map<String, JsonElement> $payload;
    public String get$status() {
        return $status;
    }
    public void set$status(String $status) {
        this.$status = $status;
    }
    public Map<String, JsonElement> get$payload() {
        return $payload;
    }
    public void set$payload(Map<String, JsonElement> $payload) {
        this.$payload = $payload;
    } 
}
Here is the Sample JSON.
{
  "$status": "OK",
  "$payload": {
    "$nextStart": "123",
    "$results": [
      {
        "$key": "101",
        "score": 3,
        "to": "Test1"
      },
      {
        "$key": "102",
        "score": 4,
        "to": "Test2"
      },
    ]
  }
}
Below is the mapping done. Is there some problem with POJO class definition. Since I cannot get all the elements of JSON response mapped to the innermost element from the response. Appreciate your support in providing useful suggestions.
Gson gson = new Gson();
                        DataResponse dataResponse = gson.fromJson(EntityUtils.toString(response.getEntity()),
                                DataResponse.class);