diesieben07
05/06/2018, 1:09 PMdata class User(val id: UUID, val username: String)
. I could add all possible fields (e.g. friends
) to this class, but causes some problems: I now need to make sure Jackson ignores those fields if they were not requested, my fields now have to be nullable even when they really shouldn't be.
Any ideas?