MaturityDto

data class MaturityDto(var maturityDate: LocalDate? = null, var rate: BigDecimal? = null, var daysUntilMaturity: Int? = null, var yieldToMaturity: BigDecimal? = null)

Details for the maturity date

Parameters

maturityDate

Maturity date

rate

Maturity rate in the currency of the security.

daysUntilMaturity

Time in days until the maturity is due.

yieldToMaturity

Yield to maturity of a fixed-interest security, calculated in relation to cash flow.

Constructors

Link copied to clipboard
constructor(maturityDate: LocalDate? = null, rate: BigDecimal? = null, daysUntilMaturity: Int? = null, yieldToMaturity: BigDecimal? = null)

Properties

Link copied to clipboard
@get:Min(value = 0)
var daysUntilMaturity: Int?
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard