When I have this data class `data class CurrentUs...
# android
a
When I have this data class
Copy code
data class CurrentUserResponse(
    val currentUser: User,
    val companies: List<Company>
)
and all my user info is in the User data class but my JSON string is like this `{ “userID”: 708, “name”: “Adam”, “companies”: [] .... } I get null reference on currentUser?