SecurityTypeDto

data class SecurityTypeDto(var code: String? = null, var text: String? = null)

Extended security type as code and text to define the type more precisely (e.g. bond, money...)

Parameters

code

Unique code for identifying the security.

text

Description of the security type.

Constructors

Link copied to clipboard
constructor(code: String? = null, text: String? = null)

Properties

Link copied to clipboard
@get:Size(max = 50)
var code: String?
Link copied to clipboard
var text: String?