How to skip top key of json?
There is JSON with root key playlist that fetch from Retrofit Interface. Gson library can't parse it to data class. Is there way to do "step into" playlist key before create model?
{
playlist: {
name: "",
description: ""
}
}
data class Playlist(val name: String, val description: String)