StockExchangeOpeningHoursDto

data class StockExchangeOpeningHoursDto(var openingTime: String? = null, var lunchTime: String? = null, var afternoonOpeningTime: String? = null, var closingTime: String? = null)

Opening hours of the stock exchange.

Parameters

openingTime

Time when the stock exchange opens. *Is displayed in 24 hour format HH:MM.

lunchTime

Time when the stock exchange closes for lunch time. *Is displayed in 24 hour format HH:MM.

afternoonOpeningTime

Time when the stock exchange opens in the afternoon. *Is displayed in 24 hour format HH:MM.

closingTime

Time when the stock exchange closes in the afternoon. *Is displayed in 24 hour format HH:MM.

Constructors

Link copied to clipboard
constructor(openingTime: String? = null, lunchTime: String? = null, afternoonOpeningTime: String? = null, closingTime: String? = null)

Properties

Link copied to clipboard
@get:Pattern(regexp = "^\d{2}:\d{2}$")
var afternoonOpeningTime: String?
Link copied to clipboard
@get:Pattern(regexp = "^\d{2}:\d{2}$")
var closingTime: String?
Link copied to clipboard
@get:Pattern(regexp = "^\d{2}:\d{2}$")
var lunchTime: String?
Link copied to clipboard
@get:Pattern(regexp = "^\d{2}:\d{2}$")
var openingTime: String?