Skip to content
Advertisement

GSON flat down map to other fields

So I have an Android app which uses Retrofit for API. I have a class like which looks like:

JavaScript

When GSON creates a JSON it looks like:

JavaScript

Would it be possible to change JSON serialization to:

JavaScript

Thanks.

Advertisement

Answer

Here is how Gson could be used to implement the flattening:

JavaScript
JavaScript

I’ve put some comments explaining “whats” and “hows”. But it would be really easy to understand even without being commented. And example unit test:

JavaScript

The code above can be simplified by using Java 8 streams, some Guava or Apache Commons stuff, but as long as you’re on Android, you probably need some pure Java 6 only.

User contributions licensed under: CC BY-SA
5 People found this is helpful
Advertisement