The schema isn't flexible. That is why I use data ...
# language-proposals
r
The schema isn't flexible. That is why I use data classes, with strongly typed properties (including nullability information). Only updates are flexible. For example, a data class might have non-null properties
a
,
b
, and
c
, but it is possible to only update
c
, therefore one can't use the same data class for the update.