WeekTimestamp

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

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

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

Functions

Link copied to clipboard
abstract fun describeContents(): Int
Link copied to clipboard
abstract fun writeToParcel(p0: Parcel, p1: Int)

Properties

Link copied to clipboard

Specific day of the week (Monday, Tuesday, ..., Sunday).

Link copied to clipboard
val hour: Int

Specific hour of the day.

Link copied to clipboard
val minute: Int

Specific minute of the hour.