janvladimirmostert
07/25/2020, 9:33 PM@JsonIgnoreProperties
, maybe a @JsonInclude and @JsonExclude would be nice
or something more generic that allows field filtering when serializing / deserializingaudriusk
07/26/2020, 6:31 AM@Transient
annotation https://github.com/Kotlin/kotlinx.serialization/blob/master/docs/examples.md#annotations You can exclude properties one by one. If that doesn't satisfies your need you can try filling feature request ticketjanvladimirmostert
07/26/2020, 8:56 AM