SecurityResponseDto

data class SecurityResponseDto(var id: String, var isin: String? = null, var securityNumber: String? = null, var name: String? = null, var description: DescriptionDto? = null, var details: SecurityDetailsDto? = null)

Describes a security with its values and trading capabilities.

Parameters

id

Unique identifier of the Security

isin

ISIN (International Securities Identification Number) or part of an ISIN. ISO-6166.

securityNumber

Security Number (e.g. WKN, VALOR)

name

Name or title of the security

description
details

Constructors

Link copied to clipboard
constructor(id: String, isin: String? = null, securityNumber: String? = null, name: String? = null, description: DescriptionDto? = null, details: SecurityDetailsDto? = null)

Properties

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
@get:Size(max = 38)
var id: String
Link copied to clipboard
@get:Size(min = 1, max = 12)
var isin: String?
Link copied to clipboard
@get:Size(max = 255)
var name: String?
Link copied to clipboard
@get:Size(max = 15)
var securityNumber: String?