PensionDto

data class PensionDto(var pensionId: String, var customerId: String, var pensionCurrency: CurrencyDto, var balance: AmountDto, var pensionName: String? = null, var pensionTypeDescription: String? = null, var pensionDescription: String? = null)

A tax-advantaged savings account, part of the three-pillar pension system.

Parameters

pensionId

ID of the pension.

customerId

Customer ID of the pension holder.

pensionCurrency

Currency of the pension.

balance

The current value of the pension.

pensionName

Name or alias of the pension, typically defined by the user.

pensionTypeDescription

Description of the pension type.

pensionDescription

Description of the pension.

Constructors

Link copied to clipboard
constructor(pensionId: String, customerId: String, pensionCurrency: CurrencyDto, balance: AmountDto, pensionName: String? = null, pensionTypeDescription: String? = null, pensionDescription: String? = null)

Properties

Link copied to clipboard
@Valid
var balance: AmountDto
Link copied to clipboard
@get:Size(max = 100)
var customerId: String
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
@get:Size(max = 100)
var pensionId: String
Link copied to clipboard
Link copied to clipboard