StockExchangeResponseDto

data class StockExchangeResponseDto(var id: String, var code: String, var country: String, var tradingOptions: StockExchangeTradingOptionsDto, var name: String? = null, var description: DescriptionDto? = null, var openingHours: StockExchangeOpeningHoursDto? = null)

Details of a stock exchange.

Parameters

id

Unique identifier of the stock exchange

code

Can be a market identification code (mic), operational market identification code or an acronym. The actual code delivered depends on the backend.

country

Country of the stock exchange. Is specified as a 2-character ISO 3166 code.

tradingOptions
name

Name of the stock exchange, if available.

description
openingHours

Constructors

Link copied to clipboard
constructor(id: String, code: String, country: String, tradingOptions: StockExchangeTradingOptionsDto, name: String? = null, description: DescriptionDto? = null, openingHours: StockExchangeOpeningHoursDto? = null)

Properties

Link copied to clipboard
@get:Size(min = 2, max = 10)
var code: String
Link copied to clipboard
@get:Pattern(regexp = "^([A-Z]{2})$")
@get:Size(min = 2, max = 2)
var country: String
Link copied to clipboard
Link copied to clipboard
@get:Size(max = 38)
var id: String
Link copied to clipboard
@get:Size(max = 255)
var name: String?
Link copied to clipboard
Link copied to clipboard