package com.ankurm.jackson3.part4custom; import java.math.BigDecimal; /** The domain value object used by the custom serialiser and deserialiser. */ public record Money(BigDecimal amount, String currencyCode) { }