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
public class Record{ public String id; public String name; public String sourceId; }
How could we do it? Right now I use constructor mapping with a temporary Source object which then is used to set the consponding String in the Record class but there has to be a better way or?
The text was updated successfully, but these errors were encountered:
Imagine we have some json
And we wanna have this output:
public class Record{ public String id; public String name; public String sourceId; }
How could we do it? Right now I use constructor mapping with a temporary Source object which then is used to set the consponding String in the Record class but there has to be a better way or?
The text was updated successfully, but these errors were encountered: