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)