You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 10, 2023. It is now read-only.
Is it possible to get tracks as a list of tracks? In the docs there is fields.Flatten and it's possible to specify deserializers for a field, but I struggle with it and ask for some help. Thanks 😃
Hi, thanks for the library! (glad to find it, coming from Rust 🦀)
I have a following json for which I'd like to remove one level of nesting:
{ "id": 256, "title": "Super Album", "release_date": "2000-01-02", "artist": { "id": 42, "name": "Some Name" }, "tracks": { "data": [ { "id": 123, "title": "Track Title" } ] } }Deserialization uses following classes it with following classes:
Is it possible to get tracks as a list of tracks? In the docs there is
fields.Flattenand it's possible to specifydeserializersfor afield, but I struggle with it and ask for some help. Thanks 😃