Hi,
Here's a general question on hiding sensitive fields in a data class. How would you handle a model that has a "password" value in the data-class that you need to use (for password verifications etc.) but you dont want it serialized by gson to API-responses? I thought I would use @Transient to achieve it, but it seems the value is allways nulled, even when I am not putting it into gson to serialize json. Am I approaching this wrong?