<@U35HN2RGQ> I personally prefer having two versio...
# codingconventions
a
@todd.ginsberg I personally prefer having two versions, because having one version with nullable stuff means you need to write alot of logic that the compiler cannot check for you (everywhere you use the
AccountDto
you need to check at runtime whether it is full or not and possibly throw an Exception when you get the wrong version). If you have two data classes, you can always be sure that the compiler yells at you when you forget to provide values or provide too many or when you try to pass the full version to a method that needs the slimmed down version