what's the best way to declare a class which should be deserialized by jackson where i have fields which are non-nullable? do i have to make them nullable, add
@NotNull
and use
!!
everywhere where i use this object? hmm, currently i get a
MissingKotlinParameterException
, i could catch that and create an appropriate error message myself, is this the way to go?