I want to deserialize NASA asteroids that I get from an API call in json format like this:
data class Asteroid(
val id: Int,
val name: String = "",
val meanDiameter: Int,
)
class Deserializer : ResponseDeserializable<Asteroid> {
override fun deserialize(content: String) = Gson().fromJson(content, Asteroid::class.java)
}
How can I ignore the first top items links
and page
and only deserialize near_earth_objects
in my Asteroid data class? And how can I access the nested items inside of near_earth_objects
?
You can just ignore them.
If you then fetch the json you can just do this:
And you will get a list of all the objects name and id.