1
0

Part 4: Money value object shared by the custom handlers

This commit is contained in:
2026-08-04 17:31:21 +00:00
parent 9ded5a9bcb
commit 22d59d0f7c

View File

@@ -0,0 +1,6 @@
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) { }