SecuritiesSearchRequestDto

data class SecuritiesSearchRequestDto(var isin: String? = null, var securityNumber: String? = null, var name: String? = null, var securityType: String? = null)

Object with the data for an order.

Parameters

isin

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

securityNumber

Security Number (e.g. WKN, VALOR)

name

Name (or part of the name) of the security

securityType

Type of securities. Can be determined via the endpoint /securities/types.

Constructors

Link copied to clipboard
constructor(isin: String? = null, securityNumber: String? = null, name: String? = null, securityType: String? = null)

Properties

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?
Link copied to clipboard
@get:Size(max = 50)
var securityType: String?