MaturityDto

data class MaturityDto(var id: String, var dateValue: LocalDate, var amountFactor: Int? = 1, var callAmount: AmountDto? = null)

Maturity of the portfolio. The callAmount describes the value on call.

Parameters

id

Unique identifier of the Maturity.

dateValue

Date for which the maturity is valid.

amountFactor

Factor by which the callAmount must be multiplied to get the final sum. The default is 1. In this case, the callAmount is already the final sum.

callAmount

Constructors

Link copied to clipboard
constructor(id: String, dateValue: LocalDate, amountFactor: Int? = 1, callAmount: AmountDto? = null)

Properties

Link copied to clipboard
Link copied to clipboard
@Valid
var callAmount: AmountDto?
Link copied to clipboard
@Valid
var dateValue: LocalDate
Link copied to clipboard
var id: String