Analisando Json na lista de itens com campo genérico com Gson

public class OwnCollection<T>{
    private int size;
    private List<ResponseItem<T>> data;
}

public class ResponseItem<T>{
    private String path;
    private String key;
    private T value;
}

public class Query{
    public <T> OwnCollection<T>  getParsedCollection( ... ){
        String json = ...; //some unimportant calls where I get an valid Json to parse
        return Result.<T>parseToGenericCollection(json);
    }
}

public class Result{
    public static <T> OwnCollection<T> parseToGenericCollection(String result){
        Type type = new TypeToken<OwnCollection<T>>() {}.getType();
        //GsonUtil is a class where I get an Instance Gson, nothing more.
        return GsonUtil.getInstance().fromJson(result, type);
    }
}

Agora como eu chamo isso:

OwnCollection<Game> gc = new Query().<Game>getParsedCollection( ... );

Como resultado, pensei, vou ter umaOwnCollection com umList<ResponseItem> em que um item de resposta contém um campo da classeGame. O Json está perfeitamente bem e não há erro de análise, o único problema agora é esse erro quando tento obter umGame item e chame um método:

Exception in thread "main" java.lang.ClassCastException: com.google.gson.internal.LinkedTreeMap cannot be cast to at.da.example.Game

questionAnswers(1)

yourAnswerToTheQuestion