{ val name: String, val age: Int, } // Unstable: List is not stable data class RegistrationRequest( val data: Registration, val tokens: List<String>, ) // Unstable: Throwable is not stable data class RegistrationResponse( val data: Registration, val error: Throwable, )