AmountDto

data class AmountDto(var value: BigDecimal, var currency: CurrencyDto? = null)

Amount with value and currency.

Parameters

`value` Value of the amount.

currency

Constructors

Link copied to clipboard
constructor(value: BigDecimal, currency: CurrencyDto? = null)

Properties

Link copied to clipboard
@Valid
var currency: CurrencyDto?
Link copied to clipboard