7 lines
215 B
Java
7 lines
215 B
Java
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) { }
|