I have a problem with parsing a JSON response using Gson. JSON string: response: [ 2, { owner_id: 23972237, album_id: 25487692, title: 'album not new' }, { owner_id: 23972237, album_id: 25486631, title: 'фыв' } ] I have these 2 classes: public class VkAudioAlbumsResponse { public ArrayList<VkAudioAlbum> response; public VkError error; } public class VkAudioAlbum { public int owner_id; public int a