viewModel/model not saving boolean value - android
I am trying to make a call to an endpoint to onboard a user to an app. For some reason the boolean values are not being stored in my user object. The other items are fine. I'm missing something but I simply cannot see where. I'd really appreciate another set of eyes to help point out where I'm off.
Thanks!!
Here is my User model
@JsonIgnoreProperties(ignoreUnknown = true)
@JsonInclude(JsonInclude.Include.NON_NULL)
@Parcelize
class User(
var userID: Int = 0,
var email: String = "",...