WeekTimestamp

data class WeekTimestamp(day: WeekDay, hour: Int, minute: Int)

Specific time in a week span in Local Timezone. Please note, that hour = 0, minute = 0 represents midnight in morning, hour = 24, minute = 0 represents midnight at night.

Constructors

WeekTimestamp
Link copied to clipboard
fun WeekTimestamp(day: WeekDay, hour: Int, minute: Int)

Properties

day
Link copied to clipboard
val day: WeekDay
Specific day of the week (Monday, Tuesday, ..., Sunday).
hour
Link copied to clipboard
val hour: Int
Specific hour of the day.
minute
Link copied to clipboard
val minute: Int
Specific minute of the hour.